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

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

extra docs

  • Property svn:keywords set to Author Date Id Revision
File size: 549 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 util && $(MAKE) all)
9 (cd service && $(MAKE) all)
10 (cd ptp && $(MAKE) all)
11
12clean:
13 (cd util && $(MAKE) clean)
14 (cd service && $(MAKE) clean)
15 (cd ptp && $(MAKE) clean)
16 rm -f *.class
17
18distclean : clean
19
20
21# Instructions for compiling the java files
22JAVAC=javac
23
24JAVACOPTIONS= -g:lines
25#JAVACOPTIONS= -g:none -O
26
27%.class : %.java
28 $(JAVAC) $(JAVACOPTIONS) $<
29
30
31
32
33
Note: See TracBrowser for help on using the repository browser.