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

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

changed JAVACOPTIONS. log files now written to home directory. error catching in CSModel. ChangeLog.

  • Property svn:keywords set to Author Date Id Revision
File size: 705 bytes
Line 
1
2CLASSES = SimpleClient.class Proxy.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 hli && $(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 hli && $(MAKE) clean)
20 rm -f *.class
21
22distclean : clean
23
24
25# Instructions for compiling the java files
26JAVAC=javac
27
28#JAVACOPTIONS= -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.