src/utils/bigBedSummary/makefile 1.8
1.8 2009/11/09 22:07:31 galt
fixing makefile
Index: src/utils/bigBedSummary/makefile
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/utils/bigBedSummary/makefile,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -B -U 1000000 -r1.7 -r1.8
--- src/utils/bigBedSummary/makefile 22 Sep 2009 21:03:58 -0000 1.7
+++ src/utils/bigBedSummary/makefile 9 Nov 2009 22:07:31 -0000 1.8
@@ -1,16 +1,16 @@
include ../../inc/common.mk
L += -lm ${SOCKETLIB}
MYLIBDIR = ../../lib/${MACHTYPE}
MYLIBS = ${MYLIBDIR}/jkweb.a
A = bigBedSummary
-O = bigBedSummary.o
+O = ${A}.o
-bigBedSummary: ${O} ${MYLIBS}
+$A: ${O} ${MYLIBS}
@${MKDIR} "${DESTDIR}${BINDIR}"
${CC} ${COPT} ${CFLAGS} -o ${DESTDIR}${BINDIR}/${A}${EXE} $O ${MYLIBS} ${L}
${STRIP} ${DESTDIR}${BINDIR}/${A}${EXE}
clean::
rm -f ${O}