4a3f3df9cab079354e8a9f4cf6c56f616f1ea0ab kent Fri Apr 6 16:29:22 2012 -0700 Removing MySQL linking dependency. diff --git src/utils/autoSql/makefile src/utils/autoSql/makefile new file mode 100644 index 0000000..ef5e4b4 --- /dev/null +++ src/utils/autoSql/makefile @@ -0,0 +1,29 @@ +include ../../inc/common.mk + +HG_WARN = ${HG_WARN_ERR} +L += -lm +MYLIBDIR = ../../lib/${MACHTYPE} +MYLIBS = ${MYLIBDIR}/jkweb.a + + +O = autoSql.o + +all: ${BINDIR}/autoSql + +${BINDIR}/autoSql: autoSql + rm -f $@ + cp -p $< $@ + +autoSql: ${O} + ${CC} ${COPT} -o autoSql $O ../../lib/${MACHTYPE}/jkweb.a ${L} + +test: + cd tests && ${MAKE} test + +lib: + cd ../../lib && ${MAKE} + +clean:: + rm -f autoSql ${O} + cd tests && ${MAKE} clean +