diff options
| author | bringert <unknown> | 2004-06-23 13:09:56 +0000 |
|---|---|---|
| committer | bringert <unknown> | 2004-06-23 13:09:56 +0000 |
| commit | f753d01a0b4771ad84649ebbdf7ad178b2308690 (patch) | |
| tree | ec9b155684d2d8d2aee4005a9f62dd3f0a3f4a0e /src/Makefile.binary | |
| parent | 6802bcca2c9a1e7d3e079b308844ec6422a2af48 (diff) | |
Added ReleaseProcedure. Added configureation and makefiles for binary packages. Configure now lets you specify which javac and jar to use.
Diffstat (limited to 'src/Makefile.binary')
| -rw-r--r-- | src/Makefile.binary | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Makefile.binary b/src/Makefile.binary new file mode 100644 index 000000000..32ce409b6 --- /dev/null +++ b/src/Makefile.binary @@ -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) |
