source: trunk/gsdl3/src/packages/javagdbm/Makefile.in@ 10737

Last change on this file since 10737 was 10737, checked in by kjdon, 19 years ago

Java Wrapper for GDBM, from Martin Pool. Original website gone, so added it all in here. I have modified the Makefiles to work in greenstone, and on macs, and added windows makefiles

  • Property svn:keywords set to Author Date Id Revision
File size: 416 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
13distclean:
14 rm -f Makefile config.cache config.log config.status ;\
15 for subdir in $(SUBDIRS); do \
16 echo making $@ in $$subdir; \
17 (cd $$subdir && $(MAKE) $(MDEFINES) $@) || exit 1; \
18 done
19
Note: See TracBrowser for help on using the repository browser.