2019-06-13 02:58:19 +00:00
|
|
|
CFLAGS ?= -Iinclude -ggdb2
|
2019-06-08 07:29:30 +00:00
|
|
|
|
2019-07-29 14:29:50 +00:00
|
|
|
all: build build/test-get-set-cluster build/test-mkfs-simple build/test-fragment-file build/pangtool
|
2019-06-08 07:29:30 +00:00
|
|
|
|
|
|
|
build:
|
|
|
|
mkdir build
|
|
|
|
|
2019-06-09 12:32:53 +00:00
|
|
|
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
|
2019-06-09 07:48:07 +00:00
|
|
|
|
2019-06-09 12:32:53 +00:00
|
|
|
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
|
2019-07-29 14:29:50 +00:00
|
|
|
$(CC) $(CFLAGS) tests/fragment-file.c src/mkfat.c src/fat12.c src/io.c -o $@
|
|
|
|
|
|
|
|
build/pangtool: tests/pangtool.c src/fat12.c include/fat12.h src/mkfat.c src/file.c src/io.c include/io.h
|
|
|
|
$(CC) $(CFLAGS) tests/pangtool.c src/mkfat.c src/fat12.c src/io.c src/file.c -o $@
|