source: greenstone3/trunk/src/packages/javagdbm/Makefile.in@ 18343

Last change on this file since 18343 was 13502, checked in by kjdon, 17 years ago

added javaonly and installjava targets for make - used when creating a distribution for greenstone 3

  • Property svn:keywords set to Author Date Id Revision
File size: 517 bytes
Line 
1# Main Makefile for Java GDBM
2# Katherine Don
3
4SUBDIRS = java jni
5MDEFINES =
6
7all install clean:
8 for subdir in $(SUBDIRS); do \
9 echo making $@ in $$subdir; \
10 (cd $$subdir && $(MAKE) $(MDEFINES) $@) || exit 1; \
11 done
12
13javaonly:
14 cd java && $(MAKE) $(MDEFINES) all
15
16installjava:
17 cd java && $(MAKE) $(MDEFINES) install
18
19distclean:
20 rm -f Makefile config.cache config.log config.status ;\
21 for subdir in $(SUBDIRS); do \
22 echo making $@ in $$subdir; \
23 (cd $$subdir && $(MAKE) $(MDEFINES) $@) || exit 1; \
24 done
25
Note: See TracBrowser for help on using the repository browser.