d8feabb353b3c2650facea4afd08c86bb56e5549 kent Fri Apr 6 16:51:54 2012 -0700 Moving autoSql and autoDtd and autoXml back to just under hg. A little autoSql -django fix. diff --git src/utils/autoSql/makefile src/utils/autoSql/makefile deleted file mode 100644 index ef5e4b4..0000000 --- src/utils/autoSql/makefile +++ /dev/null @@ -1,29 +0,0 @@ -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 -