FreeCalypso > hg > freecalypso-sw
diff Makefile.hosttools @ 385:1cb7b2b6ce18
Makefile.hosttools and README.hosttools added at the top level
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 10 Jun 2014 09:23:07 +0000 |
parents | |
children | 120148429b9f |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile.hosttools Tue Jun 10 09:23:07 2014 +0000 @@ -0,0 +1,15 @@ +SUBDIR= ffstools loadtools miscutil rvinterf + +all: ${SUBDIR} + +${SUBDIR}: FRC + cd $@; ${MAKE} ${MFLAGS} + +clean: FRC + rm -f a.out core errs + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done + +install: FRC + for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} install); done + +FRC: