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

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

renamed NzdlIORs to NzdlServiceFactory updated server. update NzdlCollectionIn

  • Property svn:keywords set to Author Date Id Revision
File size: 438 bytes
Line 
1#name/location of java compiler
2JAVAC=javac
3
4#javac options
5#JAVACOPTIONS= -g:none -O
6JAVACOPTIONS= -deprecation -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
15CLASSFILES=NzdlConstants.class \
16 NzdlCorbaFactory.class \
17 NzdlHosts.class \
18 NzdlServiceFactory.class
19
20all: $(CLASSFILES)
21
22clean:
23 rm -f *.class
24
25
26
27
28
29
30
31
Note: See TracBrowser for help on using the repository browser.