projects
/
selector.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fe60445
)
Now uses the DESTDIR variable.
author
Francois Fleuret
<francois@fleuret.org>
Tue, 27 Sep 2011 13:48:25 +0000
(15:48 +0200)
committer
Francois Fleuret
<francois@fleuret.org>
Tue, 27 Sep 2011 13:48:25 +0000
(15:48 +0200)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
fe51ddf
..
9b8de76
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-21,8
+21,8
@@
# along with selector. If not, see <http://www.gnu.org/licenses/>.
#
-BINARY_PATH = /usr/bin
-MAN_PATH = /usr/share/man/man1
+BINARY_PATH =
$(DESTDIR)
/usr/bin
+MAN_PATH =
$(DESTDIR)
/usr/share/man/man1
LDFLAGS=-lcurses
@@
-42,6
+42,7
@@
selector: selector.o
$(CC) -o $@ $^ $(LDFLAGS)
install: selector
+ mkdir -p $(BINARY_PATH) $(MAN_PATH)
install -m 755 selector $(BINARY_PATH)
install -m 644 selector.1 $(MAN_PATH)
gzip $(MAN_PATH)/selector.1