Added ReleaseProcedure. Added configureation and makefiles for binary packages. Configure now lets you specify which javac and jar to use.

This commit is contained in:
bringert
2004-06-23 13:09:56 +00:00
parent d4e30498f6
commit 5e0861ddef
6 changed files with 135 additions and 9 deletions

11
src/Makefile.binary Normal file
View File

@@ -0,0 +1,11 @@
include config.mk
GF_LIB_DIR=$(libdir)/GF-$(PACKAGE_VERSION)
install:
$(INSTALL) -d $(bindir)
$(INSTALL) ./$(bindir)/* $(bindir)
# overwrite the old one with the newly configured one if there is one
[ -f jgf ] && $(INSTALL) jgf $(bindir)
$(INSTALL) -d $(GF_LIB_DIR)
$(INSTALL) -m 0644 ./$(GF_LIB_DIR)/* $(GF_LIB_DIR)