diff options
author | Keith Packard <keithp@keithp.com> | 2010-07-27 10:18:09 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-07-27 10:18:09 -0700 |
commit | 734cd15ccff691f851359518ce6118f29dc9f88d (patch) | |
tree | 8397125dd2607a37f5f7633c0aa94700a2750482 | |
parent | 809feb75e2155e84aebfcc431867edcfd9054670 (diff) |
Remove directories as .class file dependencies; it makes them get rebuilt all the time
-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 aa0278a8..cd123023 100644 --- a/ao-tools/altosui/Makefile +++ b/ao-tools/altosui/Makefile @@ -35,12 +35,12 @@ JAVAFLAGS=-Xlint:unchecked all: altosui.jar -$(CLASSFILES): classes/altosui classes/libaltosJNI $(FREETTSJAR) +$(CLASSFILES): .java.class: javac -cp "$(CLASSPATH)" $(JAVAFLAGS) $*.java -altosui.jar: $(CLASSFILES) Manifest.txt +altosui.jar: classes/altosui classes/libaltosJNI $(FREETTSJAR) $(CLASSFILES) Manifest.txt cd ./classes && jar cfm ../$@ altosui/Manifest.txt altosui/*.class libaltosJNI/*.class classes/altosui: |