1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-12-22 02:51:32 +03:00
kakoune/src/Makefile

136 lines
3.5 KiB
Makefile
Raw Normal View History

debug ?= yes
static ?= no
2015-11-05 19:59:29 +03: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
2011-09-02 20:51:20 +04:00
sources := $(wildcard *.cc)
objects := $(addprefix ., $(sources:.cc=$(suffix).o))
deps := $(addprefix ., $(sources:.cc=$(suffix).d))
2016-02-06 03:01:42 +03:00
docs := $(wildcard ../doc/manpages/*.asciidoc)
mandocs := $(docs:.asciidoc=.gz)
2011-09-02 20:51:20 +04:00
PREFIX ?= /usr/local
2014-10-08 23:23:20 +04:00
DESTDIR ?= # root dir
NCURSESW_INCLUDE ?= /usr/include/ncursesw
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-mt
CPPFLAGS += -I$(PREFIX)/opt/ncurses/include -I$(PREFIX)/opt/boost/include
LDFLAGS += -L$(PREFIX)/opt/ncurses/lib -L$(PREFIX)/opt/boost/lib
2015-11-02 23:22:00 +03:00
else ifeq ($(os),FreeBSD)
LIBS += -ltinfow -lncursesw -lboost_regex
CPPFLAGS += -I/usr/local/include
LDFLAGS += -L/usr/local/lib
2015-09-25 01:36:29 +03:00
else ifeq ($(os),Haiku)
LIBS += -lncursesw -lboost_regex -lnetwork -lbe
2015-11-02 21:14:34 +03: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 += -lncursesw -lboost_regex
CPPFLAGS += -I$(NCURSESW_INCLUDE)
LDFLAGS += -rdynamic
2013-11-07 22:49:12 +04:00
endif
2011-09-02 20:51:20 +04:00
ifeq ($(static),yes)
LIBS += -ltinfo -lgpm
LDFLAGS += -static -pthread
endif
CXXFLAGS += -pedantic -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -Wno-address
2015-11-05 19:59:29 +03:00
all : kak
2011-09-02 20:51:20 +04:00
kak : $(objects)
2013-03-15 17:03:12 +04:00
$(CXX) $(LDFLAGS) $(CXXFLAGS) $(objects) $(LIBS) -o $@
2011-09-02 20:51:20 +04:00
-include $(deps)
2011-09-02 20:51:20 +04:00
.%$(suffix).o: %.cc
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -MD -MP -MF $(addprefix ., $(<:.cc=$(suffix).d)) -c -o $@ $<
2011-09-02 20:51:20 +04:00
# Generate the man page
../doc/kak.1.gz: ../doc/kak.1.txt
a2x --no-xmllint -f manpage $<
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
2016-02-06 03:01:42 +03:00
../doc/manpages/%.gz: ../doc/manpages/%.asciidoc
a2x --no-xmllint -f manpage $<
2016-02-06 03:01:42 +03:00
sed -i -r -e "s,^\.TH .+,.TH KAKOUNE 1 \"\" \"\" \"$(basename $(notdir $<))\"," \
-e "/^\.SH \"NAME\"/{N;d;}" $(@:.gz=.1)
2016-02-06 03:01:42 +03:00
gzip -f $(@:.gz=.1)
mv -f $(@:.gz=.1.gz) $@
check: test
2014-10-11 22:50:30 +04:00
test:
cd ../test && ./run
TAGS: tags
2011-09-08 18:28:42 +04:00
tags:
ctags -R
2016-02-04 13:58:59 +03:00
man: ../doc/kak.1.gz
doc: $(mandocs)
2011-09-08 18:28:42 +04:00
2012-10-11 00:44:06 +04:00
clean:
rm -f .*.o .*.d
distclean: clean
rm -f kak
installdirs:
install -d $(bindir) \
$(sharedir)/rc/base \
$(sharedir)/rc/core \
$(sharedir)/rc/extra \
$(sharedir)/colors \
$(docdir)/manpages \
$(mandir)
install: kak man doc installdirs
install -m 0755 kak $(bindir)
install -m 0644 ../share/kak/kakrc $(sharedir)
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/manpages/*.gz $(docdir)/manpages
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