aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0e3a5dd..40fed53 100644
--- a/Makefile
+++ b/Makefile
@@ -10,6 +10,8 @@ CLEANFILES := $(CLEANFILES) $(DEPFILES) $(OBJFILES) test/test.o test/test.d test
LIBS ?= -lX11 -lXext -ljpeg -lpng -lgif
PREFIX ?= /usr/local
BINDIR = $(PREFIX)/bin
+DATAROOTDIR = $(PREFIX)/share
+MANDIR = $(DATAROOTDIR)/man
# User configuration
CONFIG ?= ../config
@@ -32,7 +34,8 @@ test/test: test/test.o $(filter-out src/main.o src/xlib.o, $(OBJFILES))
$(CC) $(CFLAGS) -MMD -MP -MT "$*.d" -c -o $@ $<
install:
- install -Dm 755 meh $(BINDIR)
+ install -Dm 755 meh $(DESTDIR)$(BINDIR)/meh
+ install -D doc/meh.1 $(DESTDIR)$(MANDIR)/man1/meh.1
# Clean
clean: