32 lines
833 B
Makefile
32 lines
833 B
Makefile
|
##########################################################################
|
||
|
# User configuration and firmware specific object files
|
||
|
##########################################################################
|
||
|
|
||
|
OBJS =
|
||
|
|
||
|
OBJS += basic.o
|
||
|
OBJS += reinvoke_isp.o
|
||
|
OBJS += delayms.o
|
||
|
OBJS += voltage.o
|
||
|
OBJS += keyin.o
|
||
|
OBJS += uuid.o
|
||
|
OBJS += crc.o
|
||
|
|
||
|
LIBNAME=basic
|
||
|
|
||
|
##########################################################################
|
||
|
# GNU GCC compiler flags
|
||
|
##########################################################################
|
||
|
ROOT_PATH?= ..
|
||
|
INCLUDE_PATHS = -I$(ROOT_PATH) -I../core -I.
|
||
|
|
||
|
include $(ROOT_PATH)/Makefile.inc
|
||
|
|
||
|
CFLAGS+=
|
||
|
|
||
|
##########################################################################
|
||
|
# Actual work
|
||
|
##########################################################################
|
||
|
|
||
|
include $(ROOT_PATH)/Makefile.util
|