2010-02-23 18:14:32 -05:00
|
|
|
MC1322X := ..
|
2010-02-21 17:34:27 -05:00
|
|
|
|
2010-02-26 14:04:10 -05:00
|
|
|
# all off the common objects for each target
|
|
|
|
# a COBJ is made for EACH board and goes the obj_$(BOARD)_board directory
|
|
|
|
# board specific code is OK in these files
|
2010-03-03 08:09:19 -05:00
|
|
|
COBJS := tests.o put.o
|
2010-02-26 14:04:10 -05:00
|
|
|
|
|
|
|
# all of the target programs to build
|
2010-03-02 10:39:23 -05:00
|
|
|
TARGETS := blink-red blink-green blink-blue blink-white blink-allio \
|
2010-02-26 17:44:39 -05:00
|
|
|
uart1-loopback \
|
|
|
|
tmr tmr-ints \
|
|
|
|
sleep \
|
2010-03-02 14:32:34 -05:00
|
|
|
printf
|
2010-02-26 17:44:39 -05:00
|
|
|
|
2010-03-02 10:38:32 -05:00
|
|
|
# these targets are built with space reserved for variables needed by ROM services
|
|
|
|
# this space is initialized with a rom call to rom_data_init
|
2010-03-03 18:48:29 -05:00
|
|
|
TARGETS_WITH_ROM_VARS := nvm-read nvm-write romimg flasher \
|
|
|
|
rftest-rx rftest-tx \
|
|
|
|
per
|
2010-02-23 18:27:12 -05:00
|
|
|
|
2010-03-12 16:43:21 -05:00
|
|
|
##################################################
|
|
|
|
# you shouldn't need to edit anything below here #
|
|
|
|
##################################################
|
|
|
|
|
|
|
|
need := 3.81
|
|
|
|
ok := $(filter $(need),$(firstword $(sort $(MAKE_VERSION) \
|
|
|
|
$(need))))
|
|
|
|
|
|
|
|
ifdef $(need)
|
|
|
|
$(error You need to use version 3.81 of Make or later)
|
|
|
|
endif
|
|
|
|
|
|
|
|
# this rule will become the default_goal if
|
|
|
|
# $(MC1322X)/Makefile.include doesn't exist it will try to update the
|
|
|
|
# submodule, check if $(MC1322X) exists, and if it does
|
|
|
|
# try make again
|
|
|
|
submodule:
|
2010-03-11 16:31:47 -05:00
|
|
|
git submodule update --init
|
2010-03-12 16:43:21 -05:00
|
|
|
if [ ! -d $(MC1322X) ] ; then echo "*** cannot find MC1322X directory $(MC1322X)" ; exit 2; fi
|
2010-03-11 16:31:47 -05:00
|
|
|
$(MAKE)
|
|
|
|
|
|
|
|
-include $(MC1322X)/Makefile.include
|
2010-02-21 17:34:27 -05:00
|
|
|
|
2010-02-23 15:53:00 -05:00
|
|
|
|
2010-02-23 18:27:12 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2010-02-22 19:18:48 -05:00
|
|
|
|