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

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

started work on the Java server. still many hacks.

  • Property svn:keywords set to Author Date Id Revision
File size: 452 bytes
Line 
1#name/location of java compiler
2JAVAC=javac
3
4#javac options
5#JAVACOPTIONS= -g:none -O
6JAVACOPTIONS= -g:lines
7
8#complete compilation
9JAVACOMPILE=$(JAVAC) $(JAVACOPTIONS)
10
11#make a .class file from a .java file
12%.class: %.java
13 $(JAVAC) $(JAVACOPTIONS) $<
14
15all:
16 (cd util && make all)
17 (cd service && make all)
18 make SimpleClient.class SimpleServer.class
19
20
21clean:
22 (cd util && make clean)
23 (cd service && make clean)
24 rm -f *.class
25 rm -f *.html
26
27
28
29
30
31
32
Note: See TracBrowser for help on using the repository browser.