crashtest-r0ket/firmware/funk/Makefile

27 lines
787 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 12:25:15 +00:00
OBJS += openbeacon.h
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