summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-04-05 17:09:10 -0300
committerEuAndreh <eu@euandre.org>2024-04-05 17:13:44 -0300
commit905dab9e4bcfc9c768d4c9e57d5021624b7b499e (patch)
tree06eb4021d5fb2063c5c7aa71838c221971b334d8 /Makefile
parentMove unit tests out of src/*.c into tests/ (diff)
downloadpindaiba-905dab9e4bcfc9c768d4c9e57d5021624b7b499e.tar.gz
pindaiba-905dab9e4bcfc9c768d4c9e57d5021624b7b499e.tar.xz
rm -rf tools/ doc/*
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.