# HG changeset patch # User Michael Spacefalcon # Date 1367643724 0 # Node ID 796da8d60b231cb33d16046cfaeea653349691d2 # Parent 9ee91bc6057cbef4d4a6bc257f30c4075d77e046 target-utils: top-level Makefile created like in the Book-E-MON and SDSL CPE source trees by the same author diff -r 9ee91bc6057c -r 796da8d60b23 target-utils/Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/target-utils/Makefile Sat May 04 05:02:04 2013 +0000 @@ -0,0 +1,18 @@ +PROGS= helloapp loadagent +LIBS= libcommom libload libprintf +SUBDIR= ${PROGS} ${LIBS} + +default: loadagent +all: ${PROGS} + +helloapp: libcommon libprintf +loadagent: libcommon libload libprintf + +${SUBDIR}: FRC + cd $@; make ${MFLAGS} + +clean: FRC + rm -f a.out core errs + for i in ${SUBDIR}; do (cd $$i; make ${MFLAGS} clean); done + +FRC: