chiark / gitweb /
update upstream tarball building steps
[topgit.git] / Makefile
index cf842d686a1ff7db9f15a330ac5e565a29940824..2c627afbaab085c72f58257399edca8da4d77fb5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,11 @@
-# Set PREFIX to wherever you want to install TopGit
-PREFIX = $(HOME)
-bindir = $(PREFIX)/bin
-cmddir = $(PREFIX)/libexec/topgit
-sharedir = $(PREFIX)/share/topgit
+prefix = $(HOME)
+bindir = $(prefix)/bin
+cmddir = $(prefix)/libexec/topgit
+sharedir = $(prefix)/share/topgit
 hooksdir = $(cmddir)/hooks
 
 
-commands_in = tg-create.sh tg-delete.sh tg-info.sh tg-patch.sh tg-summary.sh tg-update.sh
+commands_in = $(wildcard tg-*.sh)
 hooks_in = hooks/pre-commit.sh
 
 commands_out = $(patsubst %.sh,%,$(commands_in))
@@ -15,7 +14,7 @@ help_out = $(patsubst %.sh,%.txt,$(commands_in))
 
 all::  tg $(commands_out) $(hooks_out) $(help_out)
 
-tg $(commands_out) $(hooks_out): % : %.sh
+tg $(commands_out) $(hooks_out): % : %.sh Makefile
        @echo "[SED] $@"
        @sed -e 's#@cmddir@#$(cmddir)#g;' \
                -e 's#@hooksdir@#$(hooksdir)#g' \
@@ -31,14 +30,14 @@ $(help_out): README
        ./create-help.sh $$CMD
 
 install:: all
-       install -d -m 755 "$(bindir)"
-       install tg "$(bindir)"
-       install -d -m 755 "$(cmddir)"
-       install $(commands_out) "$(cmddir)"
-       install -d -m 755 "$(hooksdir)"
-       install $(hooks_out) "$(hooksdir)"
-       install -d -m 755 "$(sharedir)"
-       install -m 644 $(help_out) "$(sharedir)"
+       install -d -m 755 "$(DESTDIR)$(bindir)"
+       install tg "$(DESTDIR)$(bindir)"
+       install -d -m 755 "$(DESTDIR)$(cmddir)"
+       install $(commands_out) "$(DESTDIR)$(cmddir)"
+       install -d -m 755 "$(DESTDIR)$(hooksdir)"
+       install $(hooks_out) "$(DESTDIR)$(hooksdir)"
+       install -d -m 755 "$(DESTDIR)$(sharedir)"
+       install -m 644 $(help_out) "$(DESTDIR)$(sharedir)"
 
 clean::
        rm -f tg $(commands_out) $(hooks_out) $(help_out)