diff options
author | Uros Majstorovic <majstor@majstor.org> | 2021-05-20 19:18:16 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2021-05-20 19:18:16 +0200 |
commit | 768fc9d49096aa8a8247f31ec8d5b8dd09d6b0ad (patch) | |
tree | 6c0a6b36cc975bd55047eeac8aec5f04647dd336 /fw/fe310/test/Makefile | |
parent | 42d5c7be2c6bea5c03f55f43ad34b4bc28d50bcc (diff) |
camera test app
Diffstat (limited to 'fw/fe310/test/Makefile')
-rw-r--r-- | fw/fe310/test/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fw/fe310/test/Makefile b/fw/fe310/test/Makefile index aef5f29..c5f68fb 100644 --- a/fw/fe310/test/Makefile +++ b/fw/fe310/test/Makefile @@ -1,9 +1,11 @@ include ../common.mk -CFLAGS += -I../eos -I../bsp/include -I../bsp/drivers +CRYPTO_DIR = ../../../crypto + +CFLAGS += -I.. -I../eos -I../bsp/include -I../bsp/drivers -I$(CRYPTO_DIR) LDFLAGS = $(CFLAGS) -L.. -Wl,--gc-sections -nostartfiles -nostdlib -Wl,--start-group -lc -lm -lgcc -leos -Wl,--end-group -T../bsp/default.lds -DEPS = main.o status.o cell_dev.o cell_pdp.o phone.o modem.o wifi.o +DEPS = main.o status.o cell_dev.o cell_pdp.o phone.o modem.o wifi.o cam.o test.o TARGET = phone all: $(TARGET) |