9bfcf5e486d3ff0032e427a6ccf478fb776f5e0f hiram Mon Jun 14 11:42:27 2010 -0700 fixing makefiles to have clean targets diff --git src/idbQuery/makefile src/idbQuery/makefile index cd6fd86..ae0bf5c 100644 --- src/idbQuery/makefile +++ src/idbQuery/makefile @@ -1,16 +1,18 @@ include ../inc/common.mk L += -lm $(MYSQLLIBS) MYLIBDIR = ../lib/$(MACHTYPE) MYLIBS = $(MYLIBDIR)/jkweb.a O = idbQuery.o idbQuery.exe: $(O) ${CC} ${COPT} ${CFLAGS} $O ../lib/$(MACHTYPE)/jkweb.a mv ${AOUT} idbQuery.exe chmod a+rx idbQuery.exe push: mv idbQuery.exe ${CGI_BIN}-${USER} +clean:: + rm -f ${O} idbQuery.exe ${AOUT}