13 lines
250 B
Makefile
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
|