24 lines
719 B
Makefile
24 lines
719 B
Makefile
##########################################################################
|
|
# User configuration and firmware specific object files
|
|
##########################################################################
|
|
|
|
OBJS =
|
|
|
|
OBJS += flame.o
|
|
|
|
LIBNAME=flame
|
|
|
|
##########################################################################
|
|
# GNU GCC compiler flags
|
|
##########################################################################
|
|
ROOT_PATH?= ..
|
|
INCLUDE_PATHS = -I$(ROOT_PATH) -I../core -I.
|
|
|
|
include $(ROOT_PATH)/Makefile.inc
|
|
|
|
##########################################################################
|
|
# Actual work
|
|
##########################################################################
|
|
|
|
include $(ROOT_PATH)/Makefile.util
|