fiatlux/firmware/Makefile
jedi 23cb4a558b
All checks were successful
continuous-integration/drone/push Build is passing
Add simple static webserver
2021-07-19 21:26:10 +02:00

28 lines
No EOL
456 B
Makefile

PROGRAM=fiatlux
EXTRA_CFLAGS=-O3 -Ifsdata
#Enable debugging
#EXTRA_CFLAGS+=-DLWIP_DEBUG=1 -DHTTPD_DEBUG=LWIP_DBG_ON
EXTRA_COMPONENTS=extras/i2s_dma extras/ws2812_i2s extras/dhcpserver extras/mbedtls extras/httpd extras/sntp extras/cpp_support
LIBS = hal m
FLASH_MODE = dio
include ../modules/rtos/common.mk
html:
@echo "Generating fsdata.."
cd fsdata && ./makefsdata
test: unittest systest
unittest:
true
systest:
true
.NOTPARALLEL: html all