Compile options can be defined in project Makefile such as UDEFS, UADEFS, UINCDIR, ULIBDIR and ULIBS.
# List all user C define here, like -D_DEBUG=1
## Select which interfaces to include here!
-UDEFS = $(OPT_DEFS)
+UDEFS += $(OPT_DEFS)
# Define ASM defines here
-UADEFS = $(OPT_DEFS)
+UADEFS += $(OPT_DEFS)
# bootloader definitions may be used in the startup .s file
ifneq ("$(wildcard $(TARGET_DIR)/bootloader_defs.h)","")
UADEFS += -include $(TARGET_DIR)/bootloader_defs.h
endif
# List all user directories here
-UINCDIR =
+#UINCDIR =
# List the user directory to look for the libraries here
-ULIBDIR =
+#ULIBDIR =
# List all user libraries here
-ULIBS =
+#ULIBS =
#
# End of user defines