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

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

change int-> long in a number of places, new createNzdlService method taking only an IOR, added the start of a hli (high level interface

  • Property svn:keywords set to Author Date Id Revision
File size: 763 bytes
Line 
1
2CLASSES = SimpleClient.class SimpleServer.class SearchAllCollections.class
3
4all : subdirs $(CLASSES)
5 echo try a command like "java org.nzdl.gsdl.SimpleClient -v 2 -Q"
6
7subdirs :
8 (cd classification && $(MAKE) all)
9 (cd service && $(MAKE) all)
10 (cd util && $(MAKE) all)
11 (cd ptp && $(MAKE) all)
12 (cd hli && $(MAKE) all)
13 (cd SimpleGraphicalClient && $(MAKE) all)
14
15clean:
16 (cd classification && $(MAKE) clean)
17 (cd SimpleGraphicalClient && $(MAKE) clean)
18 (cd util && $(MAKE) clean)
19 (cd service && $(MAKE) clean)
20 (cd hli && $(MAKE) clean)
21 (cd ptp && $(MAKE) clean)
22 rm -f *.class
23
24distclean : clean
25
26
27# Instructions for compiling the java files
28JAVAC=javac
29
30JAVACOPTIONS= -g:lines
31#JAVACOPTIONS= -g:none -O
32
33%.class : %.java
34 $(JAVAC) $(JAVACOPTIONS) $<
35
36
37
38
39
Note: See TracBrowser for help on using the repository browser.