df794bd4f60a73c54bfdb4c12639c7ab6a68219f hiram Tue Apr 23 13:27:18 2013 -0700 update to minimal makefile, refs #9104 diff --git src/utils/cpgIslandExt/makefile src/utils/cpgIslandExt/makefile index 45fe817..0c0d4eb 100644 --- src/utils/cpgIslandExt/makefile +++ src/utils/cpgIslandExt/makefile @@ -1,21 +1,4 @@ -include ../../inc/common.mk - -A = cpglh -O = cpg_lh.o readseq.o - -${A}: ${O} - ${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O - -install:: - ${STRIP} ${A}${EXE} - rm -f ${DESTDIR}${BINDIR}/${A}${EXE} - cp -p ${A}${EXE} ${DESTDIR}${BINDIR}/${A}${EXE} - -clean:: - rm -f ${O} ${A}${EXE} - -compile:: ${O} - ${CC} ${COPT} ${CFLAGS} -o ${A}${EXE} $O - -# compile: -# gcc readseq.c cpg_lh.c -o cpglh.exe +kentSrc = ../.. +A = cpg_lh +extraObjects = readseq.o +include $(kentSrc)/inc/userApp.mk