Sean Cross
48f1f33c49
Right now it only works on the root directory, and has much more functionality that needs adding. But it passes the tests. Signed-off-by: Sean Cross <sean@xobs.io>
15 lines
701 B
Makefile
15 lines
701 B
Makefile
CFLAGS ?= -Iinclude -ggdb2
|
|
|
|
all: build build/test-get-set-cluster build/test-mkfs-simple build/test-fragment-file
|
|
|
|
build:
|
|
mkdir build
|
|
|
|
build/test-get-set-cluster: tests/get-set-cluster.c src/fat12.c include/fat12.h src/io.c include/io.h
|
|
$(CC) $(CFLAGS) tests/get-set-cluster.c src/fat12.c src/io.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 include/io.h
|
|
$(CC) $(CFLAGS) tests/mkfs-simple.c src/mkfat.c src/fat12.c src/io.c -o $@
|
|
|
|
build/test-fragment-file: tests/fragment-file.c src/fat12.c include/fat12.h src/mkfat.c src/io.c include/io.h
|
|
$(CC) $(CFLAGS) tests/fragment-file.c src/mkfat.c src/fat12.c src/io.c -o $@
|