4a3f3df9cab079354e8a9f4cf6c56f616f1ea0ab kent Fri Apr 6 16:29:22 2012 -0700 Removing MySQL linking dependency. diff --git src/utils/autoXml/makefile src/utils/autoXml/makefile new file mode 100644 index 0000000..78c1861 --- /dev/null +++ src/utils/autoXml/makefile @@ -0,0 +1,17 @@ +include ../../inc/common.mk + +MYLIBDIR = ../../lib/$(MACHTYPE) +MYLIBS = $(MYLIBDIR)/jkweb.a + +O = autoXml.o + +autoXml: $O $(MYLIBS) + ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/autoXml $O $(MYLIBS) ${L} +# ${STRIP} ${BINDIR}/autoXml${EXE} + +test:: + doTest + +clean: + rm -f *.o + rm -rf test/*/out