#
#
#
DIR_TMP=../../tmp

all:

pre:
	test -d $(DIR_TMP) || mkdir $(DIR_TMP)
	(test -f config-pre.cxp && PATHXSL=../../xml $(BIN) config-pre.cxp workflow.xml 2> $(DIR_TMP)/pre-$(MAIN).log) || echo "No pre makes in net/$(MAIN)"
#	cp html/*.png html/*.jpg $(DIR_TMP)/

post:

install: #all

clean:
	rm -f *~

veryclean: clean
	rm -f -r $(DIR_TMP)

