aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 97441a1..c8724c4 100644
--- a/Makefile
+++ b/Makefile
@@ -14,6 +14,9 @@ INCDIR=$(PREFIX)/include
MANDIR=$(PREFIX)/share/man
MAN3DIR=$(MANDIR)/man3
+MANSOURCE=$(wildcard *.3.sh)
+BUILTMAN=$(MANSOURCE:.3.sh=.3)
+
ifeq ($(DEBUG),1)
CFLAGS_DEBUG=-ggdb -DDEBUG
endif
@@ -37,14 +40,14 @@ libtermkey.so: termkey.o driver-csi.o driver-ti.o
%.o: %.c termkey.h termkey-internal.h
$(CC) $(CFLAGS) $(CFLAGS_DEBUG) -Wall -std=c99 -fPIC -o $@ -c $<
-doc: termkey_waitkey.3 termkey_getkey.3
+doc: $(BUILTMAN)
%.3: %.3.sh
sh $< >$@
.PHONY: clean
clean:
- rm -f *.o demo
+ rm -f *.o demo $(BUILTMAN) termkey.h
.PHONY: install
install: install-inc install-lib install-man