kakoune/src/Makefile

140 lines
3.8 KiB
Makefile
Raw Normal View History

debug ?= yes
static ?= no
2015-11-05 17:59:29 +01:00
ifeq ($(debug),yes)
CPPFLAGS += -DKAK_DEBUG
suffix := .debug
else
ifeq ($(debug),no)
CXXFLAGS += -O3
suffix := .opt
else
$(error debug should be either yes or no)
endif
endif
sources := $(sort $(wildcard *.cc))
objects := $(addprefix ., $(sources:.cc=$(suffix).o))
deps := $(addprefix ., $(sources:.cc=$(suffix).d))
2016-02-06 01:01:42 +01:00
docs := $(wildcard ../doc/manpages/*.asciidoc)
mandocs := $(docs:.asciidoc=.gz)
2011-09-02 18:51:20 +02:00
PREFIX ?= /usr/local
2014-10-08 21:23:20 +02:00
DESTDIR ?= # root dir
bindir := $(DESTDIR)$(PREFIX)/bin
sharedir := $(DESTDIR)$(PREFIX)/share/kak
docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
mandir := $(DESTDIR)$(PREFIX)/share/man/man1
os := $(shell uname)
ifeq ($(os),Darwin)
LIBS += -lncurses -lboost_regex
2017-03-07 14:20:09 +01:00
CPPFLAGS += -I$(PREFIX)/opt/ncurses/include -I$(PREFIX)/opt/boost/include -I/opt/local/include
LDFLAGS += -L$(PREFIX)/opt/ncurses/lib -L$(PREFIX)/opt/boost/lib -L/opt/local/lib
2015-11-02 21:22:00 +01:00
else ifeq ($(os),FreeBSD)
LIBS += -ltinfow -lncursesw -lboost_regex
CPPFLAGS += -I/usr/local/include
LDFLAGS += -L/usr/local/lib
2015-09-25 00:36:29 +02:00
else ifeq ($(os),Haiku)
LIBS += -lncursesw -lboost_regex -lnetwork -lbe
2015-11-02 19:14:34 +01:00
else ifeq ($(os),DragonFly)
LIBS += -lncursesw -lboost_regex
CPPFLAGS += -I/usr/local/include
LDFLAGS += -L/usr/local/lib
else ifneq (,$(findstring CYGWIN,$(os)))
CPPFLAGS += -D_XOPEN_SOURCE=700
LIBS += -lncursesw -lboost_regex -ldbghelp
else
LIBS += $(shell pkg-config --libs ncursesw) -lboost_regex
CPPFLAGS += $(shell pkg-config --cflags ncursesw)
LDFLAGS += -rdynamic
2013-11-07 19:49:12 +01:00
endif
2011-09-02 18:51:20 +02:00
ifeq ($(static),yes)
LIBS += -ltinfo -lgpm
LDFLAGS += -static -pthread
endif
2016-03-12 16:27:54 +01:00
CXXFLAGS += -pedantic -std=gnu++14 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address -Wno-noexcept-type -Wno-unknown-attributes -Wno-unknown-warning-option
2015-11-05 17:59:29 +01:00
all : kak
kak : kak$(suffix)
ln -sf $< $@
kak$(suffix) : $(objects)
2013-03-15 14:03:12 +01:00
$(CXX) $(LDFLAGS) $(CXXFLAGS) $(objects) $(LIBS) -o $@
2011-09-02 18:51:20 +02:00
-include $(deps)
2011-09-02 18:51:20 +02:00
.%$(suffix).o: %.cc
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -MD -MP -MF $(addprefix ., $(<:.cc=$(suffix).d)) -c -o $@ $<
2011-09-02 18:51:20 +02:00
# Generate the man page
../doc/kak.1.gz: ../doc/kak.1.txt
a2x --no-xmllint -f manpage $<
gzip -n -9 -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
2016-02-06 01:01:42 +01:00
../doc/manpages/%.gz: ../doc/manpages/%.asciidoc
a2x --no-xmllint -f manpage $<
sed -i -r -e "s,^\.TH .+,.TH kakoune k \"\" \"\" \"$(basename $(notdir $<))\"," \
-e "/^\.SH \"NAME\"/{N;d;}" $(@:.gz=.k)
gzip -n -9 -f $(@:.gz=.k)
mv -f $(@:.gz=.k.gz) $@
check: test
2014-10-11 20:50:30 +02:00
test:
cd ../test && ./run
TAGS: tags
2011-09-08 16:28:42 +02:00
tags:
ctags -R
2016-02-04 11:58:59 +01:00
man: ../doc/kak.1.gz
doc: $(mandocs)
2011-09-08 16:28:42 +02:00
2012-10-10 22:44:06 +02:00
clean:
rm -f .*.o .*.d
distclean: clean
rm -f kak kak$(suffix)
find ../doc -type f -name \*\\.gz -exec rm -f '{}' +
installdirs:
install -d $(bindir) \
$(sharedir)/rc/base \
$(sharedir)/rc/core \
$(sharedir)/rc/extra \
$(sharedir)/colors \
$(sharedir)/doc \
$(docdir) \
$(mandir)
install: kak man doc installdirs
install -m 0755 kak $(bindir)
install -m 0644 ../share/kak/kakrc $(sharedir)
install -m 0644 ../doc/manpages/*.gz $(sharedir)/doc
install -m 0644 ../rc/base/* $(sharedir)/rc/base
install -m 0644 ../rc/core/* $(sharedir)/rc/core
install -m 0644 ../rc/extra/* $(sharedir)/rc/extra
[ -e $(sharedir)/autoload ] || ln -s rc $(sharedir)/autoload
install -m 0644 ../colors/* $(sharedir)/colors
install -m 0644 ../README.asciidoc $(docdir)
install -m 0644 ../doc/kak.1.gz $(mandir)
install-strip: install
strip -s $(bindir)/kak
uninstall:
rm -rf $(bindir)/kak \
$(sharedir) \
$(docdir) \
$(mandir)/kak.1.gz
.PHONY: check TAGS clean distclean installdirs install install-strip uninstall
.PHONY: tags test man doc kak