086a23bbef21c818e6809f13c6ffe3bbe5e540c8 kent Wed Feb 13 13:56:44 2013 -0800 A little program to massage Karen's centromeric data which looks maybe like it's reversed in some cases. diff --git src/kehayden/reverseCenReads/makefile src/kehayden/reverseCenReads/makefile new file mode 100644 index 0000000..2c719d4 --- /dev/null +++ src/kehayden/reverseCenReads/makefile @@ -0,0 +1,18 @@ +include ../../inc/common.mk + +L += -lm +MYLIBDIR = ../../lib/${MACHTYPE} +MYLIBS = ${MYLIBDIR}/jkweb.a + +A = reverseCenReads +O = reverseCenReads.o + +reverseCenReads: ${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}