diff options
author | Keith Packard <keithp@keithp.com> | 2010-08-30 05:48:23 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-08-30 05:48:23 -0700 |
commit | a94900b8862b99b4e317ea0ee3edd2a560f270c7 (patch) | |
tree | 3954a744a69eecd3cdac0350ea4296d6bbb693ba | |
parent | 38ac388baf8125c0644b868a7aaf8eba1bdf990d (diff) |
altosui: build debian-style altosui too
This adds the dependencies to make sure altosui and altosui.jar get built.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | ao-tools/altosui/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ao-tools/altosui/Makefile b/ao-tools/altosui/Makefile index 6514c608..dcaf3ab0 100644 --- a/ao-tools/altosui/Makefile +++ b/ao-tools/altosui/Makefile @@ -76,7 +76,7 @@ WINDOWS_ZIP=Altos-Windows.zip LINUX_TGZ=Altos-Linux.tgz -all: $(LINUX_APP) $(DARWIN_ZIP) $(WINDOWS_ZIP) $(LINUX_TGZ) +all: altosui altosui.jar $(LINUX_APP) $(DARWIN_ZIP) $(WINDOWS_ZIP) $(LINUX_TGZ) $(CLASSFILES): @@ -88,7 +88,7 @@ altosui.jar: classes/altosui classes/libaltosJNI $(CLASSFILES) Manifest.txt Manifest.txt: Makefile $(CLASSFILES) echo 'Main-Class: altosui.AltosUI' > $@ - echo "Class-Path: $(FREETTSLIB)/freetts.jar' >> $@ + echo "Class-Path: $(FREETTSLIB)/freetts.jar" >> $@ classes/altosui: mkdir -p classes |