X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=Makefile;h=31cc98e6fecdc1cec803f8c5744eb9b324d5b4b0;hb=d3555d507ed4508f89f47bd0320780ad738ba83e;hp=bafec268d4355976a7a2dfcded9914e49050c18a;hpb=728be702d0a1e2a0edf8e7dd7ce937c881c9a000;p=topgit.git diff --git a/Makefile b/Makefile index bafec26..31cc98e 100644 --- a/Makefile +++ b/Makefile @@ -1,26 +1,25 @@ -# Set PREFIX to wherever you want to install TopGit -PREFIX = $(HOME) -bindir = $(PREFIX)/bin -cmddir = $(PREFIX)/libexec/topgit -sharedir = $(PREFIX)/share/topgit -hooksdir = $(cmddir)/hooks +prefix ?= $(HOME) +bindir := $(prefix)/bin +cmddir := $(prefix)/share/topgit +docdir := $(prefix)/share/doc/topgit +hooksdir := $(cmddir)/hooks -commands_in = tg-create.sh tg-delete.sh tg-export.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)) -hooks_out = $(patsubst %.sh,%,$(hooks_in)) -help_out = $(patsubst %.sh,%.txt,$(commands_in)) +commands_out := $(patsubst %.sh,%,$(commands_in)) +hooks_out := $(patsubst %.sh,%,$(hooks_in)) +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' \ -e 's#@bindir@#$(bindir)#g' \ - -e 's#@sharedir@#$(sharedir)#g' \ + -e 's#@docdir@#$(docdir)#g' \ $@.sh >$@+ && \ chmod +x $@+ && \ mv $@+ $@ @@ -37,8 +36,8 @@ install:: all 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)" + install -d -m 755 "$(DESTDIR)$(docdir)" + install -m 644 $(help_out) "$(DESTDIR)$(docdir)" clean:: rm -f tg $(commands_out) $(hooks_out) $(help_out)