mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
3c097bddcf
Modified makefiles to support the portability directory. git-svn-id: file:///svn/toku/tokudb.1032b@8367 c7de825b-a66e-492c-adef-691d508d4ae1
20 lines
556 B
Makefile
20 lines
556 B
Makefile
MANPAGES = tdb_create tdb_del tdb_put tdb_open tdb_log_max
|
|
MANPAGES_TEXI = $(patsubst %,%.texi,$(MANPAGES))
|
|
MANPAGES_POD = $(patsubst %,%.pod,$(MANPAGES))
|
|
MANPAGES_3 = $(patsubst %,%.3,$(MANPAGES))
|
|
|
|
SECTIONS = intro
|
|
SECTIONS_TEXI = $(patsubst %,%.texi,$(SECTIONS))
|
|
|
|
default: $(MANPAGES_3) tokudb.dvi;
|
|
build: default;
|
|
|
|
tokudb.dvi: tokudb.texi $(MANPAGES_TEXI) $(SECTIONS_TEXI)
|
|
texi2dvi4a2ps tokudb.texi
|
|
|
|
|
|
$(MANPAGES_POD): everyman.texi
|
|
%.pod: %.texi
|
|
perl texi2pod.pl $< > $@
|
|
%.3: %.pod
|
|
pod2man --center "TokuDB Programmer's Manual" --section 3 $< > $@
|