src/hg/oneShot/timeGifPng/makefile 1.1
1.1 2010/05/03 17:22:11 braney
a little test program to test gif and png timing
Index: src/hg/oneShot/timeGifPng/makefile
===================================================================
RCS file: src/hg/oneShot/timeGifPng/makefile
diff -N src/hg/oneShot/timeGifPng/makefile
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/oneShot/timeGifPng/makefile 3 May 2010 17:22:11 -0000 1.1
@@ -0,0 +1,18 @@
+include ../../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../../lib/${MACHTYPE}
+MYLIBS = ${MYLIBDIR}/jkweb.a
+
+A = timeGifPng
+O = timeGifPng.o
+
+timeGifPng: ${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}