src/oneShot/rgbaGfxTest/makefile 1.1
1.1 2010/04/29 22:42:27 kent
A testing area for rgba graphics stuff.
Index: src/oneShot/rgbaGfxTest/makefile
===================================================================
RCS file: src/oneShot/rgbaGfxTest/makefile
diff -N src/oneShot/rgbaGfxTest/makefile
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/oneShot/rgbaGfxTest/makefile 29 Apr 2010 22:42:27 -0000 1.1
@@ -0,0 +1,18 @@
+include ../../inc/common.mk
+
+L += -lm
+MYLIBDIR = ../../lib/${MACHTYPE}
+MYLIBS = ${MYLIBDIR}/jkweb.a
+
+A = rgbaGfxTest
+O = rgbaGfxTest.o
+
+rgbaGfxTest: ${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}