c967fe3c8ce25cbc5af81b809b6ab73716f0f150 hiram Fri Jan 14 15:05:35 2011 -0800 initial contents diff --git src/utils/fileExists/makefile src/utils/fileExists/makefile new file mode 100644 index 0000000..e9a7978 --- /dev/null +++ src/utils/fileExists/makefile @@ -0,0 +1,18 @@ +include ../../inc/common.mk + +L += -lm +MYLIBDIR = ../../lib/${MACHTYPE} +MYLIBS = ${MYLIBDIR}/jkweb.a + +A = fileExists +O = fileExists.o + +fileExists: ${O} ${MYLIBS} + ${CC} ${COPT} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} $L + ${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE} + +compile:: ${O} + ${CC} ${COPT} -o ${A}${EXE} ${O} ${MYLIBS} $L + +clean:: + rm -f ${A}${EXE} ${O}