diff options
| author | bringert <unknown> | 2005-07-20 10:34:04 +0000 |
|---|---|---|
| committer | bringert <unknown> | 2005-07-20 10:34:04 +0000 |
| commit | edab6db989e1f1e376c02154b767cf85e27d68ca (patch) | |
| tree | cf7c4e0baf384ea57e7ae950f941fa199495b7b4 /src/Makefile | |
| parent | c575a9b864fdda9dba5ff4203cfb1f646270b567 (diff) | |
Fixed shell scripts for java apps to use windows paths instead of cygwin paths.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/Makefile b/src/Makefile index 085d31366..c1ce60994 100644 --- a/src/Makefile +++ b/src/Makefile @@ -24,6 +24,8 @@ SNAPSHOT_DIR=GF-$(shell date +%Y%m%d) MSI_FILE=gf-$(subst .,_,$(PACKAGE_VERSION)).msi +GF_DATA_DIR=$(datadir)/GF-$(PACKAGE_VERSION) + # use the temporary binary file name 'gf-bin' to not clash with directory 'GF' # on case insensitive file systems (such as FAT) GF_EXE=gf$(EXEEXT) @@ -232,11 +234,11 @@ install-gfdoc: $(INSTALL) tools/$(GF_DOC_EXE) $(bindir) install-editor: - $(INSTALL) -d $(datadir)/GF-$(PACKAGE_VERSION) + $(INSTALL) -d $(GF_DATA_DIR) $(INSTALL) jgf $(bindir) - $(INSTALL) -m 0644 JavaGUI/gf-java.jar $(datadir)/GF-$(PACKAGE_VERSION) + $(INSTALL) -m 0644 JavaGUI/gf-java.jar $(GF_DATA_DIR) $(INSTALL) gfeditor $(bindir) - $(INSTALL) -m 0644 $(GFEDITOR)/gfeditor.jar $(datadir)/GF-$(PACKAGE_VERSION) + $(INSTALL) -m 0644 $(GFEDITOR)/gfeditor.jar $(GF_DATA_DIR) install-java: javac -rm -f ../bin/JavaGUI @@ -244,4 +246,3 @@ install-java: javac @echo "PLEASE edit GFHOME in bin/jgf" -rm -f ../bin/$(GFEDITOR) ln -s ../src/$(GFEDITOR) ../bin - |
