summaryrefslogtreecommitdiff
path: root/ao-tools/altosui/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ao-tools/altosui/Makefile')
-rw-r--r--ao-tools/altosui/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/ao-tools/altosui/Makefile b/ao-tools/altosui/Makefile
new file mode 100644
index 00000000..cb422df8
--- /dev/null
+++ b/ao-tools/altosui/Makefile
@@ -0,0 +1,13 @@
+.SUFFIXES: .java .class
+
+CLASSPATH=..
+CLASSFILES=AltosSerialMonitor.class AltosSerial.class AltosUI.class
+JAVAFLAGS=-Xlint:unchecked
+
+all: $(CLASSFILES)
+
+.java.class:
+ javac -cp $(CLASSPATH) $(JAVAFLAGS) $*.java
+
+clean:
+ rm -f *.class \ No newline at end of file