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

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

changed JAVACOPTIONS. log files now written to home directory. error catching in CSModel. ChangeLog.

  • Property svn:keywords set to Author Date Id Revision
File size: 467 bytes
Line 
1#name/location of java compiler
2JAVAC=javac
3
4#javac options
5#JAVACOPTIONS= -g:none -O
6#JAVACOPTIONS= -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.