gvsu/cs656/lab4/Makefile
josh c96f382b3d updated Makefile
git-svn-id: svn://anubis/gvsu@264 45c1a28c-8058-47b2-ae61-ca45b979098e
2008-11-25 19:34:09 +00:00

13 lines
250 B
Makefile

RESTLET_DIR := $(HOME)/restlet/lib
nullstring :=
space := $(nullstring) #
RESTLET_JARS := $(subst $(space),:,$(shell find $(RESTLET_DIR) -iname '*.jar'))
export CLASSPATH += $(RESTLET_JARS)
all:
javac *.java
clean:
-rm -f *~ *.class