aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f1c1a286..0a96d2e5 100644
--- a/Makefile
+++ b/Makefile
@@ -9,11 +9,10 @@ SOURCE = $(DESTDIR)$(PREFIX)/lib/prosody
all:
$(MAKE) all -C util-src
-install: prosody util/encodings.so util/encodings.so
-
+install: prosody.install util/encodings.so util/encodings.so
install -d $(BIN) $(CONFIG) $(MODULES) $(SOURCE)
install -d $(SOURCE)/core $(SOURCE)/net $(SOURCE)/util
- install ./prosody $(BIN)
+ install ./prosody.install $(BIN)/prosody
install -m644 core/* $(SOURCE)/core
install -m644 net/* $(SOURCE)/net
install -m644 util/* $(SOURCE)/util
@@ -22,6 +21,7 @@ install: prosody util/encodings.so util/encodings.so
$(MAKE) install -C util-src
clean:
+ rm -f prosody.install
$(MAKE) clean -C util-src
util/encodings.so:
@@ -29,3 +29,7 @@ util/encodings.so:
util/hashes.so:
$(MAKE) install -C util-src
+
+prosody.install: prosody
+ sed "s|^CFG_SOURCEDIR=.*;$$|CFG_SOURCEDIR='$(SOURCE)';|;s|^CFG_CONFIGDIR=.*;$$|CFG_CONFIGDIR='$(CONFIG)';|;s|^CFG_PLUGINDIR=.*;$$|CFG_PLUGINDIR='$(MODULES)/';|;" prosody > prosody.install
+