Prevent unconditional generation of the man pages, fix the executable name for a2x
on Mac OS X
This commit is contained in:
parent
4280831e7a
commit
8d0988d541
54
src/Makefile
54
src/Makefile
|
@ -20,15 +20,16 @@ endif
|
||||||
sources := $(wildcard *.cc)
|
sources := $(wildcard *.cc)
|
||||||
objects := $(addprefix ., $(sources:.cc=$(suffix).o))
|
objects := $(addprefix ., $(sources:.cc=$(suffix).o))
|
||||||
deps := $(addprefix ., $(sources:.cc=$(suffix).d))
|
deps := $(addprefix ., $(sources:.cc=$(suffix).d))
|
||||||
docs := commands \
|
docs := ../doc/manpages/commands \
|
||||||
execeval \
|
../doc/manpages/execeval \
|
||||||
expansions \
|
../doc/manpages/expansions \
|
||||||
faces \
|
../doc/manpages/faces \
|
||||||
highlighters \
|
../doc/manpages/highlighters \
|
||||||
hooks \
|
../doc/manpages/hooks \
|
||||||
options \
|
../doc/manpages/options \
|
||||||
registers \
|
../doc/manpages/registers \
|
||||||
shortcuts \
|
../doc/manpages/shortcuts
|
||||||
|
mandocs := $(addsuffix .gz,$(docs))
|
||||||
|
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
DESTDIR ?= # root dir
|
DESTDIR ?= # root dir
|
||||||
|
@ -44,6 +45,7 @@ os := $(shell uname)
|
||||||
|
|
||||||
ifeq ($(os),Darwin)
|
ifeq ($(os),Darwin)
|
||||||
LIBS += -lncurses -lboost_regex-mt
|
LIBS += -lncurses -lboost_regex-mt
|
||||||
|
A2X ?= a2x.py
|
||||||
else ifeq ($(os),FreeBSD)
|
else ifeq ($(os),FreeBSD)
|
||||||
LIBS += -ltinfow -lncursesw -lboost_regex
|
LIBS += -ltinfow -lncursesw -lboost_regex
|
||||||
CPPFLAGS += -I/usr/local/include
|
CPPFLAGS += -I/usr/local/include
|
||||||
|
@ -62,6 +64,10 @@ else
|
||||||
LDFLAGS += -rdynamic
|
LDFLAGS += -rdynamic
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# The `a2x` tool is used as-is (`a2x.py`) in some distributions, or as a symlink in others (`a2x` → `a2x.py`)
|
||||||
|
# Picking the right name is done in the system detection switch above
|
||||||
|
A2X ?= a2x
|
||||||
|
|
||||||
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare
|
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare
|
||||||
|
|
||||||
kak : $(objects)
|
kak : $(objects)
|
||||||
|
@ -72,26 +78,30 @@ kak : $(objects)
|
||||||
.%$(suffix).o: %.cc
|
.%$(suffix).o: %.cc
|
||||||
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -MD -MP -MF $(addprefix ., $(<:.cc=$(suffix).d)) -c -o $@ $<
|
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -MD -MP -MF $(addprefix ., $(<:.cc=$(suffix).d)) -c -o $@ $<
|
||||||
|
|
||||||
%.1: %
|
# Generate the man page
|
||||||
a2x -f manpage $<
|
../doc/kak.1.gz: ../doc/kak.1.txt
|
||||||
%.1.gz: %.1.txt
|
$(A2X) -f manpage $<
|
||||||
a2x -f manpage $<
|
|
||||||
gzip -f $(basename $<)
|
gzip -f $(basename $<)
|
||||||
|
|
||||||
|
# Generate the editor's documentation pages
|
||||||
|
# Since `a2x` won't generate man pages if some sections are missing (which we don't need),
|
||||||
|
# we generate the pages, patch them and then compress them
|
||||||
|
$(mandocs): $(docs)
|
||||||
|
@for f in $^; do \
|
||||||
|
pagename="$${f##*/}"; pagename="$${pagename%.*}"; \
|
||||||
|
$(A2X) -f manpage "$$f"; \
|
||||||
|
sed -i -r -e "s,^\.TH .+,.TH KAKOUNE 1 \"\" \"\" \"$${pagename^^}\"," \
|
||||||
|
-e "/^\.SH \"NAME\"/,+1d" "$${f}.1"; \
|
||||||
|
gzip -f "$${f}.1"; \
|
||||||
|
mv "$${f}.1.gz" "$${f/.1/}.gz"; \
|
||||||
|
done
|
||||||
|
|
||||||
test:
|
test:
|
||||||
cd ../test && ./run
|
cd ../test && ./run
|
||||||
tags:
|
tags:
|
||||||
ctags -R
|
ctags -R
|
||||||
|
|
||||||
man: ../doc/kak.1.gz
|
man: ../doc/kak.1.gz
|
||||||
doc: $(addsuffix .1,$(addprefix ../doc/manpages/,$(docs)))
|
doc: $(mandocs)
|
||||||
@for f in $^; do \
|
|
||||||
pagename="$${f##*/}"; pagename="$${pagename%.*}"; \
|
|
||||||
sed -i -r -e "s,^\.TH .+,.TH KAKOUNE 1 \"\" \"\" \"$${pagename^^}\"," \
|
|
||||||
-e "/^\.SH \"NAME\"/,+1d" $$f; \
|
|
||||||
gzip -f "$$f"; \
|
|
||||||
mv "$${f}.gz" "$${f/.1/}.gz"; \
|
|
||||||
done
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f .*.o .*.d kak tags
|
rm -f .*.o .*.d kak tags
|
||||||
|
|
Loading…
Reference in New Issue
Block a user