diff --git a/cs656/lab4/Makefile b/cs656/lab4/Makefile new file mode 100644 index 0000000..6a36ea1 --- /dev/null +++ b/cs656/lab4/Makefile @@ -0,0 +1,11 @@ + +RESTLET_DIR := $(HOME)/restlet/lib +RESTLET_JARS := $(subst " ",":",$(shell find $RESTLET_DIR -iname '*.jar')) +CLASSPATH += $(RESTLET_JARS) + +all: + echo Classpath: $$CLASSPATH + javac *.java + +clean: + -rm -f *~ *.class