Changeset 2102


Ignore:
Timestamp:
2001-03-01T16:23:06+13:00 (23 years ago)
Author:
paynter
Message:

Cleaned up, added SearchAllCollections.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/java-client/org/nzdl/gsdl/Makefile

    r2098 r2102  
     1
     2CLASSES = SimpleClient.class SimpleServer.class SearchAllCollections.class
     3
     4all : subdirs $(CLASSES)
     5
     6subdirs :
     7    (cd util && $(MAKE) all)
     8    (cd service && $(MAKE) all)
     9
     10clean:
     11    (cd util && $(MAKE) clean)
     12    (cd service && $(MAKE) clean)
     13    rm -f *.class
     14
     15distclean : clean
    116
    217
    3 # Instructions for compiling a java file
     18# Instructions for compiling the java files
    419JAVAC=javac
     20
    521JAVACOPTIONS= -g:lines
    622#JAVACOPTIONS= -g:none -O
    723
    8 %.class : %.java
     24%.class : %.java subdirs
    925    $(JAVAC) $(JAVACOPTIONS)  $<
    10 
    11 all :
    12     (cd util && $(MAKE) all)
    13     (cd service && $(MAKE) all)
    14     $(MAKE) SimpleClient.class SimpleServer.class
    15 
    16 
    17 clean:
    18     (cd util && make clean)
    19     (cd service && make clean)
    20     rm -f *.class
    21     rm -f *.html
    2226
    2327
     
    2529
    2630
    27 
    28 
Note: See TracChangeset for help on using the changeset viewer.