1
0
forked from GitHub/gf-core

reorganize the directories under src, and rescue the JavaScript interpreter from deprecated

This commit is contained in:
krasimir
2009-12-13 18:50:29 +00:00
parent d88a865faf
commit f85232947e
189 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
include config.mk
GF_DATA_DIR=$(datadir)/GF-$(PACKAGE_VERSION)
GF_LIB_DIR=$(GF_DATA_DIR)/lib
.PHONY: install uninstall
install:
$(INSTALL) -d $(bindir)
$(INSTALL) gf$(EXEEXT) gfdoc$(EXEEXT) $(bindir)
$(INSTALL) gfc$(EXEEXT) $(bindir)
$(INSTALL) -d $(GF_DATA_DIR)
cp -r lib $(GF_DATA_DIR)
uninstall:
-rm -f $(bindir)/gf$(EXEEXT) $(bindir)/gfdoc$(EXEEXT)
-rm -f $GF_LIB_DIR)/*/*.gf{o}
-rmdir $(GF_LIB_DIR)/*
-rmdir $(GF_LIB_DIR)
-rmdir $(GF_DATA_DIR)