12 lines
227 B
Makefile
12 lines
227 B
Makefile
|
|
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
|