crashtest-r0ket/firmware/flame/Makefile
bsx fda93e381f moved flame code into core
- flames now hav an API
- default flame code handles both types simultaneously
- l0dables may claim a flame to manipulate as they wish
2011-12-22 14:33:48 +01:00

23 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