diff options
| author | Keith Packard <keithp@keithp.com> | 2010-03-31 13:49:54 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2010-03-31 13:49:54 -0700 |
| commit | 7f233369e32c3254165ee251df0a3dbc21ea5a29 (patch) | |
| tree | d85eb5818a04e732e17f4dd25f880e31bf41b554 /ao-tools/altosui/Makefile | |
| parent | df7bda1f32b0049c3878c325ea0b55999f3980e3 (diff) | |
Start adding java-based UI
Diffstat (limited to 'ao-tools/altosui/Makefile')
| -rw-r--r-- | ao-tools/altosui/Makefile | 13 |
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 |
