aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRobin Krahl <me@robin-krahl.de>2016-06-10 14:45:26 +0200
committerRobin Krahl <me@robin-krahl.de>2016-06-10 14:45:26 +0200
commitdac7446aa9c9c77d035e1059d70c95d8c4dd9e06 (patch)
tree8a28d7a654f6f077322476a71eaf2180a246a246 /Makefile
parent7e1c9abe13f38bf5a3ce32e6b8b6842c1f80bcda (diff)
downloaddbfp-dac7446aa9c9c77d035e1059d70c95d8c4dd9e06.tar.gz
dbfp-dac7446aa9c9c77d035e1059d70c95d8c4dd9e06.tar.bz2
man: add man pages for dbfp_query_departure, dbfp_departure_close
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ac2048b..d912aad 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ clean:
$(RM) dbfp_check
$(RM) dbfp.o dbfp_check.o
-doc: man/dbfp_close.3 man/dbfp_init.3 man/dbfp_location_close.3 man/dbfp_query_location.3
+doc: man/dbfp_close.3 man/dbfp_init.3 man/dbfp_departure_close.3 man/dbfp_location_close.3 man/dbfp_query_departure.3 man/dbfp_query_location.3
memcheck: libdbfp.so dbfp_check
LD_LIBRARY_PATH=. CK_FORK=no valgrind --tool=memcheck ./dbfp_check
@@ -36,12 +36,18 @@ memcheck: libdbfp.so dbfp_check
man/dbfp_close.3: man/dbfp_close.pod
pod2man -c "DB timetable API" -n "DBFP_CLOSE" -r $(VERSION) -s 3 $^ > $@
+man/dbfp_departure_close.3: man/dbfp_departure_close.pod
+ pod2man -c "DB timetable API" -n "DBFP_DEPARTURE_CLOSE" -r $(VERSION) -s 3 $^ > $@
+
man/dbfp_init.3: man/dbfp_init.pod
pod2man -c "DB timetable API" -n "DBFP_INIT" -r $(VERSION) -s 3 $^ > $@
man/dbfp_location_close.3: man/dbfp_location_close.pod
pod2man -c "DB timetable API" -n "DBFP_LOCATION_CLOSE" -r $(VERSION) -s 3 $^ > $@
+man/dbfp_query_departure.3: man/dbfp_query_departure.pod
+ pod2man -c "DB timetable API" -n "DBFP_QUERY_DEPARTURE" -r $(VERSION) -s 3 $^ > $@
+
man/dbfp_query_location.3: man/dbfp_query_location.pod
pod2man -c "DB timetable API" -n "DBFP_QUERY_LOCATION" -r $(VERSION) -s 3 $^ > $@