FreeCalypso > hg > freecalypso-sw
comparison gsm-fw/Makefile @ 143:afceeeb2cba1
Our nuc-fw is destined to become gsm-fw, so I went ahead and did the big hg mv
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 12 Nov 2013 05:35:48 +0000 |
parents | nuc-fw/Makefile@85994b210f6a |
children | df335d255ac4 |
comparison
equal
deleted
inserted
replaced
142:15d5977390c2 | 143:afceeeb2cba1 |
---|---|
1 SUBDIR= bsp finlink include nucleus riviera serial sprintf sysglue | |
2 | |
3 default: config.stamp | |
4 ${MAKE} ${MFLAGS} -f Makefile.build $@ | |
5 | |
6 ramImage flashImage: config.stamp | |
7 ${MAKE} ${MFLAGS} -f Makefile.build $@ | |
8 | |
9 config.stamp: build.conf | |
10 cfgmagic/processconf.sh | |
11 touch $@ | |
12 | |
13 build.conf: | |
14 @echo 'Configuration is required before the build.' | |
15 @echo 'Please create a valid build.conf file by running config.sh' | |
16 @echo 'or copying an existing configuration file into place.' | |
17 @false | |
18 | |
19 clean: FRC | |
20 rm -f a.out core errs *.stamp | |
21 for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
22 | |
23 FRC: |