aboutsummaryrefslogtreecommitdiff
path: root/examples/Makefile
diff options
context:
space:
mode:
authorjestin2002-06-05 09:35:57 +0000
committerjestin2002-06-05 09:35:57 +0000
commit044b408ae99989be9a7eed89ed51a6aba5aa42d9 (patch)
tree22b698dbc3e6a5b242161d50ba647031b13c23dc /examples/Makefile
parent11cd642b20045e35293f8510fbab5be9eeca11d7 (diff)
downloadivy-java-044b408ae99989be9a7eed89ed51a6aba5aa42d9.zip
ivy-java-044b408ae99989be9a7eed89ed51a6aba5aa42d9.tar.gz
ivy-java-044b408ae99989be9a7eed89ed51a6aba5aa42d9.tar.bz2
ivy-java-044b408ae99989be9a7eed89ed51a6aba5aa42d9.tar.xz
Clean package build.
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile16
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