9 lines
200 B
Makefile
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
|