summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 57d93fa..3db4dd3 100644
--- a/Makefile
+++ b/Makefile
@@ -43,7 +43,6 @@ LDLIBS = -lsiphash
all:
include deps.mk
-manpages = $(manpages.in:.in=)
catalogs.cat = $(catalogs.msg:.msg=.cat)
sources.h = $(sources.c:.c=.h)
@@ -74,7 +73,6 @@ sources = \
derived-assets = \
lib$(NAME).a \
src/config.h \
- $(manpages) \
$(catalogs.cat) \
$(sources.o) \
$(tests.o) \
@@ -102,7 +100,7 @@ all: $(derived-assets)
lib$(NAME).a: $(sources.o)
$(NAME).a: $(sources.o) src/main.o
$(fuzz.bin): lib$(NAME).a
-$(manpages) src/config.h: Makefile deps.mk
+src/config.h: Makefile deps.mk
$(sources.o) $(tests.o): Makefile deps.mk src/config.h
src/main.o tests/slurp.o: Makefile deps.mk src/config.h
tests/slurp.o: tests/slurp.h
@@ -167,7 +165,6 @@ install: all
mkdir -p "$$dir"; \
cp src/$(NAME)."$$l".cat "$$dir"/$(NAME).cat; \
done
- sh tools/manpages.sh -ip '$(DESTDIR)$(MANDIR)' $(manpages)
## Uninstalls from $(DESTDIR)$(PREFIX). This is a perfect mirror
## of the "install" target, and removes *all* that was installed.
@@ -182,7 +179,6 @@ uninstall:
for l in $(LANGUAGES); do \
rm -f '$(DESTDIR)$(LOCALEDIR)'/"$$l"/LC_MESSAGES/$(NAME).cat; \
done
- sh tools/manpages.sh -up '$(DESTDIR)$(MANDIR)' $(manpages)
## Show this help.