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

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

fixed Makefiles to stop deleting html files. Added the notion of a Wrapper. Converted NzdlCachingServiceClient to NzdlCacheWrapper. Added NzdlDocSaveWrapper. Added NzdlLogWrapper. Added functionality to NzdlIORs to use these.

  • Property svn:keywords set to Author Date Id Revision
File size: 428 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=NzdlConstants.class \
16 NzdlCorbaFactory.class \
17 NzdlHosts.class \
18 NzdlIORs.class
19
20all: $(CLASSFILES)
21
22clean:
23 rm -f *.class
24
25
26
27
28
29
30
31
Note: See TracBrowser for help on using the repository browser.