2015-09-21 14:38:09 +02:00
|
|
|
debug ?= yes
|
2015-11-05 17:59:29 +01:00
|
|
|
pedantic ?= yes
|
|
|
|
|
2015-09-21 14:38:09 +02: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
|
|
|
|
|
2015-11-05 17:59:29 +01:00
|
|
|
ifeq ($(pedantic),yes)
|
|
|
|
CXXFLAGS += -pedantic
|
|
|
|
endif
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
sources := $(wildcard *.cc)
|
2015-09-21 14:38:09 +02:00
|
|
|
objects := $(addprefix ., $(sources:.cc=$(suffix).o))
|
|
|
|
deps := $(addprefix ., $(sources:.cc=$(suffix).d))
|
2016-02-03 20:09:41 +01:00
|
|
|
docs := commands \
|
|
|
|
execeval \
|
|
|
|
expansions \
|
|
|
|
faces \
|
|
|
|
highlighters \
|
|
|
|
hooks \
|
|
|
|
options \
|
|
|
|
registers \
|
|
|
|
shortcuts \
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2013-12-23 22:26:07 +01:00
|
|
|
PREFIX ?= /usr/local
|
2014-10-08 21:23:20 +02:00
|
|
|
DESTDIR ?= # root dir
|
2013-12-23 22:26:07 +01:00
|
|
|
|
2015-11-20 02:09:24 +01:00
|
|
|
NCURSESW_INCLUDE ?= /usr/include/ncursesw
|
|
|
|
|
2013-12-23 22:26:07 +01:00
|
|
|
bindir := $(DESTDIR)$(PREFIX)/bin
|
|
|
|
sharedir := $(DESTDIR)$(PREFIX)/share/kak
|
|
|
|
docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
|
2016-02-04 10:53:41 +01:00
|
|
|
mandir := $(DESTDIR)$(PREFIX)/share/man/man1
|
2013-12-23 22:26:07 +01:00
|
|
|
|
2014-04-03 02:54:27 +02:00
|
|
|
os := $(shell uname)
|
|
|
|
|
|
|
|
ifeq ($(os),Darwin)
|
2015-05-27 19:45:52 +02:00
|
|
|
LIBS += -lncurses -lboost_regex-mt
|
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
|
2015-06-16 19:49:56 +02:00
|
|
|
else ifneq (,$(findstring CYGWIN,$(os)))
|
|
|
|
LIBS += -lncursesw -lboost_regex -ldbghelp
|
2014-04-03 02:54:27 +02:00
|
|
|
else
|
2015-05-27 19:45:52 +02:00
|
|
|
LIBS += -lncursesw -lboost_regex
|
2015-11-20 02:09:24 +01:00
|
|
|
CPPFLAGS += -I$(NCURSESW_INCLUDE)
|
2015-05-27 19:45:52 +02:00
|
|
|
LDFLAGS += -rdynamic
|
2013-11-07 19:49:12 +01:00
|
|
|
endif
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2015-11-05 17:59:29 +01:00
|
|
|
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare
|
|
|
|
|
2011-09-02 18:51:20 +02:00
|
|
|
kak : $(objects)
|
2013-03-15 14:03:12 +01:00
|
|
|
$(CXX) $(LDFLAGS) $(CXXFLAGS) $(objects) $(LIBS) -o $@
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2012-08-08 13:39:31 +02:00
|
|
|
-include $(deps)
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2015-09-21 14:38:09 +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
|
|
|
|
2016-02-03 20:09:41 +01:00
|
|
|
%.1: %
|
|
|
|
a2x -f manpage $<
|
|
|
|
%.1.gz: %.1.txt
|
|
|
|
a2x -f manpage $<
|
|
|
|
gzip -f $(basename $<)
|
|
|
|
|
2014-10-11 20:50:30 +02:00
|
|
|
test:
|
|
|
|
cd ../test && ./run
|
2011-09-08 16:28:42 +02:00
|
|
|
tags:
|
|
|
|
ctags -R
|
2016-02-03 20:09:41 +01:00
|
|
|
|
2016-02-04 11:58:59 +01:00
|
|
|
man: ../doc/kak.1.gz
|
2016-02-03 20:09:41 +01:00
|
|
|
doc: $(addsuffix .1,$(addprefix ../doc/manpages/,$(docs)))
|
|
|
|
@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
|
2011-09-08 16:28:42 +02:00
|
|
|
|
2012-10-10 22:44:06 +02:00
|
|
|
clean:
|
2013-04-03 18:52:16 +02:00
|
|
|
rm -f .*.o .*.d kak tags
|
2012-10-10 22:44:06 +02:00
|
|
|
|
2012-12-11 13:45:04 +01:00
|
|
|
XDG_CONFIG_HOME ?= $(HOME)/.config
|
|
|
|
|
2016-02-03 20:09:41 +01:00
|
|
|
install: kak man doc
|
2013-12-23 22:26:07 +01:00
|
|
|
mkdir -p $(bindir)
|
2014-04-03 20:55:57 +02:00
|
|
|
install -m 0755 kak $(bindir)
|
2016-02-03 23:31:35 +01:00
|
|
|
mkdir -p $(sharedir)/rc/base
|
|
|
|
mkdir -p $(sharedir)/rc/core
|
|
|
|
mkdir -p $(sharedir)/rc/extra
|
2014-04-03 20:55:57 +02:00
|
|
|
install -m 0644 ../share/kak/kakrc $(sharedir)
|
2016-02-03 23:31:35 +01:00
|
|
|
install -m 0644 ../rc/base/* $(sharedir)/rc/base
|
|
|
|
install -m 0644 ../rc/core/* $(sharedir)/rc/core
|
|
|
|
install -m 0644 ../rc/extra/* $(sharedir)/rc/extra
|
2015-08-29 22:47:50 +02:00
|
|
|
[ -e $(sharedir)/autoload ] || ln -s rc $(sharedir)/autoload
|
2015-07-14 19:44:03 +02:00
|
|
|
mkdir -p $(sharedir)/colors
|
|
|
|
install -m 0644 ../colors/* $(sharedir)/colors
|
2016-02-04 10:46:12 +01:00
|
|
|
mkdir -p $(docdir)/manpages
|
2016-02-04 10:53:41 +01:00
|
|
|
mkdir -p $(mandir)
|
2014-04-03 20:55:57 +02:00
|
|
|
install -m 0644 ../README.asciidoc $(docdir)
|
2016-02-04 10:46:12 +01:00
|
|
|
install -m 0644 ../doc/manpages/*.gz $(docdir)/manpages
|
2016-02-04 11:58:59 +01:00
|
|
|
install -m 0644 ../doc/kak.1.gz $(mandir)
|
2013-12-23 22:26:07 +01:00
|
|
|
|
2015-12-11 01:48:13 +01:00
|
|
|
.PHONY: tags install
|