11 lines
206 B
Makefile
11 lines
206 B
Makefile
|
|
RESTLET_DIR := $(HOME)/restlet/lib
|
|
RESTLET_JARS := $(subst " ",":",$(shell find $(RESTLET_DIR) -iname '*.jar'))
|
|
export CLASSPATH += $(RESTLET_JARS)
|
|
|
|
all:
|
|
javac *.java
|
|
|
|
clean:
|
|
-rm -f *~ *.class
|