usecfs/test/Makefile
2019-10-26 15:48:15 +02:00

9 lines
200 B
Makefile

CFLAGS:=-I../src/ -DBLOCKDEV_OPEN_ARGS=\"test.bin\" -g -ggdb -DCRYPTO
all: test
test: main.o ../src/usecfs.o ../src/usecfs_dev_test.o
gcc -o $@ $^ -lwolfssl
clean:
@rm -f test main.o ../src/*.o