* [PATCH] Makefile: make customization of installation locations easier.
@ 2006-06-04 20:38 Junio C Hamano
0 siblings, 0 replies; only message in thread
From: Junio C Hamano @ 2006-06-04 20:38 UTC (permalink / raw)
To: Jonas Fonseca; +Cc: git, Junio C Hamano
Signed-off-by: Junio C Hamano <junkio@cox.net>
---
Makefile | 13 +++++++++----
1 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/Makefile b/Makefile
index a7ff69b..d20f823 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,8 @@
-PREFIX = $(HOME)
+prefix = $(HOME)
+bindir= $(prefix)/bin
+mandir = $(prefix)/man
+# DESTDIR=
+
LDLIBS = -lcurses
CFLAGS = -Wall -O2
DFLAGS = -g -DDEBUG -Werror
@@ -19,14 +23,15 @@ doc: $(DOCS)
install: all
for prog in $(PROGS); do \
- install $$prog $(PREFIX)/bin; \
+ install $$prog $(DESTDIR)$(bindir); \
done
install-doc: doc
+ mkdir -p $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man5
for doc in $(DOCS); do \
case "$$doc" in \
- *.1) install $$doc $(PREFIX)/man/man1 ;; \
- *.5) install $$doc $(PREFIX)/man/man5 ;; \
+ *.1) install $$doc $(DESTDIR)$(mandir)/man1 ;; \
+ *.5) install $$doc $(DESTDIR)$(mandir)/man5 ;; \
esac \
done
--
1.3.3.gb266
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2006-06-04 20:39 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-04 20:38 [PATCH] Makefile: make customization of installation locations easier Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).