aa727212e0fd18b6e2d3dc39764072b78b25d4ae kent Mon Mar 14 20:35:28 2011 -0700 Adding another bed cleanup utility. diff --git src/utils/bedRestrictToPositions/makefile src/utils/bedRestrictToPositions/makefile new file mode 100644 index 0000000..8949c85 --- /dev/null +++ src/utils/bedRestrictToPositions/makefile @@ -0,0 +1,18 @@ +include ../../inc/common.mk + +L += -lm +MYLIBDIR = ../../lib/${MACHTYPE} +MYLIBS = ${MYLIBDIR}/jkweb.a + +A = bedRestrictToPositions +O = bedRestrictToPositions.o + +bedRestrictToPositions: ${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}