######################################################################### # # # Makefile # # # # Purpose: Makefile # # # # You should not need to edit this file; all the things you may # # need to edit to compile this on your system are in # # $(SRCROOT)/Make-local-dependencies # # # # Copyright (c) Simon Brooke & Weft Technology Ltd; see LICENSE. # # # # $Revision: 1.5 $ # # $Author: simon $ # # # ######################################################################### SRCROOT=../../../../ include $(SRCROOT)/Make-local-dependencies JAVAC=$(JAVA_HOME)/bin/javac CLASSPATH=$(SRCROOT):$(JAVALIB)/servlet.jar:$(JAVALIB)/jakarta-regexp-1.1.jar JFLAGS=-deprecation -classpath $(CLASSPATH) DOCDIR=$(SRCROOT)/documentation IFLAGS=-m 755 TARGETS=MaybeUploadRequestWrapper.class MaybeUploadServlet.class \ MultipartHandler.class \ TestHarness.class UploadException.class \ SnoopServlet.class DumpServlet.class .SUFFIXES: .java .class all: $(TARGETS) Makefile touch allDone install: all echo "Cannot install from here!" clean: rm -f *~ *.class doc: $(TARGETS) javadoc -version -author -d $(DOCDIR) \ uk.co.weft.htform .java.class: $(JAVAC) $(JFLAGS) $<