crashtest-r0ket/firmware/funk/Makefile

28 lines
802 B
Makefile
Raw Normal View History

2011-07-05 00:33:36 +00:00
##########################################################################
# User configuration and firmware specific object files
##########################################################################
OBJS =
OBJS += nrf24l01p.o
2011-07-13 22:13:16 +00:00
OBJS += rftransfer.o
2011-07-14 21:40:03 +00:00
OBJS += filetransfer.o
2011-07-17 15:42:19 +00:00
OBJS += openbeacon.o
2011-07-30 14:10:30 +00:00
OBJS += mesh.o
2011-07-05 00:33:36 +00:00
LIBNAME=funk
##########################################################################
# GNU GCC compiler flags
##########################################################################
ROOT_PATH?= ..
INCLUDE_PATHS = -I$(ROOT_PATH) -I../core -I.
include $(ROOT_PATH)/Makefile.inc
##########################################################################
# Actual work
2011-07-05 00:33:36 +00:00
##########################################################################
include $(ROOT_PATH)/Makefile.util