source: trunk/java-client/org/nzdl/gsdl/service/Makefile@ 2178

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

implemented multiway wrapper to allow a client to connect to multiple servers seamlessly

  • Property svn:keywords set to Author Date Id Revision
File size: 783 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=NzdlCollectionInfo.class \
16 NzdlQuery.class \
17 NzdlQueryHit.class \
18 NzdlRequest.class \
19 NzdlResponse.class \
20 NzdlResultSet.class \
21 NzdlService.class \
22 NzdlServiceClient.class \
23 NzdlServiceServer.class \
24 NzdlWrapper.class \
25 NzdlLogWrapper.class \
26 NzdlDocSaveWrapper.class \
27 NzdlMultiWayWrapper.class \
28 NzdlCacheWrapper.class
29
30
31all: $(CLASSFILES)
32
33clean:
34 rm -f *.class
35
36
37
38
39
40
41
42
Note: See TracBrowser for help on using the repository browser.