diff options
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 0000000..4c317f3 --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,16 @@ +# Be sure to set this before compiling ... +# JIKESPATH = /usr/lib/j2re1.3/lib/rt.jar:/usr/share/java/repository +JAVACOPTS = -deprecation +.SUFFIXES: .java .class + SRCS = TestIvy.java TestIvySwing.java Counter.java ivyTranslater.java + OBJS = $(SRCS:.java=.class) + JAVAC = jikes + #JAVAC = javac + +.java.class: + $(JAVAC) $< + +all: $(OBJS) + +clean: + /bin/rm -f -- $(OBJS) *~ *.bak |