source: trunk/java-client/org/nzdl/gsdl/util/Makefile@ 2188

Last change on this file since 2188 was 2188, checked in by say1, 23 years ago

added NzdlPreferences.java and hooked it up in all the necessary places. The PreferencesDialog doesn"t save \(yet\).

  • Property svn:keywords set to Author Date Id Revision
File size: 466 bytes
Line 
1#name/location of java compiler
2JAVAC=javac
3
4#javac options
5#JAVACOPTIONS= -g:none -O
6JAVACOPTIONS= -deprecation -g:lines
7
8#complete compilation
9JAVACOMPILE=$(JAVAC) $(JAVACOPTIONS)
10
11#make a .class file from a .java file
12%.class: %.java
13 $(JAVAC) $(JAVACOPTIONS) $<
14
15CLASSFILES=NzdlPreferences.class\
16 NzdlConstants.class \
17 NzdlCorbaFactory.class \
18 NzdlHosts.class \
19 NzdlServiceFactory.class
20
21all: $(CLASSFILES)
22
23clean:
24 rm -f *.class
25
26
27
28
29
30
31
32
Note: See TracBrowser for help on using the repository browser.