FreeCalypso > hg > freecalypso-sw
changeset 245:2dfd9cfa9df6
ffstools/Makefile added
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> | 
|---|---|
| date | Mon, 27 Jan 2014 04:14:57 +0000 | 
| parents | 48a254ca4493 | 
| children | 872d92404b6a | 
| files | ffstools/Makefile | 
| diffstat | 1 files changed, 15 insertions(+), 0 deletions(-) [+] | 
line wrap: on
 line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ffstools/Makefile Mon Jan 27 04:14:57 2014 +0000 @@ -0,0 +1,15 @@ +SUBDIR= tiffs-rd tiffs-wrappers + +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:
