usecfs/test/Makefile

10 lines
206 B
Makefile
Raw Normal View History

2019-10-21 19:23:55 +02:00
CFLAGS:=-I../src/ -DBLOCKDEV_OPEN_ARGS=\"test.bin\" -g -ggdb
all: test
test: main.o ../src/usecfs.o ../src/usecfs_dev_test.o
gcc -o $@ $^
clean:
rm main.o ../src/usecfs.o ../src/usecfs_dev_test.o test