added initial Makefile from lab3

git-svn-id: svn://anubis/gvsu@259 45c1a28c-8058-47b2-ae61-ca45b979098e
This commit is contained in:
josh 2008-11-25 19:06:57 +00:00
parent f538d0201e
commit 8806765cac

11
cs656/lab4/Makefile Normal file
View File

@ -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