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

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

initial commit of the classification stuff. now appears to work, but is not integrated.

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