2019-06-08 07:29:30 +00:00
|
|
|
CFLAGS ?= -Iinclude
|
|
|
|
|
2019-06-09 07:48:07 +00:00
|
|
|
all: build build/test-get-set-cluster build/test-mkfs-simple
|
2019-06-08 07:29:30 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
mkdir build
|
|
|
|
|
2019-06-09 07:48:07 +00:00
|
|
|
build/test-get-set-cluster: tests/get-set-cluster.c src/fat12.c include/fat12.h
|
|
|
|
$(CC) $(CFLAGS) tests/get-set-cluster.c src/fat12.c -o build/test-get-set-cluster
|
|
|
|
|
|
|
|
build/test-mkfs-simple: tests/mkfs-simple.c src/fat12.c include/fat12.h src/mkfat.c src/io.c
|
|
|
|
$(CC) $(CFLAGS) tests/mkfs-simple.c src/mkfat.c src/fat12.c src/io.c -o $@
|