FreeCalypso > hg > freecalypso-sw
changeset 318:0c87c1f9dac5
GPF: beginning of Makefile hierarchy
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Fri, 11 Apr 2014 05:46:44 +0000 |
parents | 06ee56829697 |
children | 2c760f6b1fe0 |
files | gsm-fw/Makefile gsm-fw/gpf/Makefile gsm-fw/gpf/frame/Makefile |
diffstat | 3 files changed, 25 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/gsm-fw/Makefile Fri Apr 11 05:37:27 2014 +0000 +++ b/gsm-fw/Makefile Fri Apr 11 05:46:44 2014 +0000 @@ -1,4 +1,4 @@ -SUBDIR= bsp finlink include nucleus riviera serial services sprintf sysglue +SUBDIR= bsp finlink gpf include nucleus riviera serial services sprintf sysglue default: config.stamp ${MAKE} ${MFLAGS} -f Makefile.build $@
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gsm-fw/gpf/Makefile Fri Apr 11 05:46:44 2014 +0000 @@ -0,0 +1,12 @@ +SUBDIR= frame + +all: ${SUBDIR} + +${SUBDIR}: FRC + cd $@; ${MAKE} ${MFLAGS} + +clean: FRC + rm -f *.[oa] *.out *errs + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done + +FRC:
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gsm-fw/gpf/frame/Makefile Fri Apr 11 05:46:44 2014 +0000 @@ -0,0 +1,12 @@ +SUBDIR= iram xip + +all: ${SUBDIR} + +${SUBDIR}: FRC + cd $@; ${MAKE} ${MFLAGS} + +clean: FRC + rm -f *.[oa] *.out *errs + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done + +FRC: