FreeCalypso > hg > freecalypso-citrine
comparison services/Makefile @ 0:75a11d740a02
initial import of gsm-fw from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 09 Jun 2016 00:02:41 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:75a11d740a02 |
---|---|
1 sinclude ../include/config.mk | |
2 | |
3 ALL_SUBDIR= dar etm ffs pcm | |
4 | |
5 BUILD_SUBDIR= dar ffs | |
6 ifeq (${CONFIG_INCLUDE_PCM},1) | |
7 BUILD_SUBDIR+= pcm | |
8 endif | |
9 ifeq (${RVM_ETM_SWE},1) | |
10 BUILD_SUBDIR+= etm | |
11 endif | |
12 | |
13 all: ${BUILD_SUBDIR} | |
14 | |
15 ${BUILD_SUBDIR}: FRC | |
16 cd $@; ${MAKE} ${MFLAGS} | |
17 | |
18 clean: FRC | |
19 rm -f *.[oa] *.out *errs | |
20 for i in ${ALL_SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done | |
21 | |
22 FRC: |