diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..429b6bb --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +CFLAGS ?= -Iinclude + +all: build build/test-get-set-cluster + +build: + mkdir build + +build/test-get-set-cluster: + $(CC) $(CFLAGS) tests/get-set-cluster.c src/fat12.c -o build/test-get-set-cluster \ No newline at end of file diff --git a/tests/test_get_set_cluster.c b/tests/get-set-cluster.c similarity index 100% rename from tests/test_get_set_cluster.c rename to tests/get-set-cluster.c