2015-09-21 15:38:09 +03:00
|
|
|
debug ?= yes
|
2015-11-05 19:59:29 +03:00
|
|
|
pedantic ?= yes
|
|
|
|
|
2015-09-21 15:38:09 +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
|
|
|
|
|
2015-11-05 19:59:29 +03:00
|
|
|
ifeq ($(pedantic),yes)
|
|
|
|
CXXFLAGS += -pedantic
|
|
|
|
endif
|
|
|
|
|
2011-09-02 20:51:20 +04:00
|
|
|
sources := $(wildcard *.cc)
|
2015-09-21 15:38:09 +03:00
|
|
|
objects := $(addprefix ., $(sources:.cc=$(suffix).o))
|
|
|
|
deps := $(addprefix ., $(sources:.cc=$(suffix).d))
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2013-12-24 01:26:07 +04:00
|
|
|
PREFIX ?= /usr/local
|
2014-10-08 23:23:20 +04:00
|
|
|
DESTDIR ?= # root dir
|
2013-12-24 01:26:07 +04:00
|
|
|
|
|
|
|
bindir := $(DESTDIR)$(PREFIX)/bin
|
|
|
|
sharedir := $(DESTDIR)$(PREFIX)/share/kak
|
|
|
|
docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
|
|
|
|
|
2014-04-03 04:54:27 +04:00
|
|
|
os := $(shell uname)
|
|
|
|
|
|
|
|
ifeq ($(os),Darwin)
|
2015-05-27 20:45:52 +03:00
|
|
|
LIBS += -lncurses -lboost_regex-mt
|
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
|
2015-06-16 20:49:56 +03:00
|
|
|
else ifneq (,$(findstring CYGWIN,$(os)))
|
|
|
|
LIBS += -lncursesw -lboost_regex -ldbghelp
|
2014-04-03 04:54:27 +04:00
|
|
|
else
|
2015-05-27 20:45:52 +03:00
|
|
|
LIBS += -lncursesw -lboost_regex
|
2015-07-25 04:20:33 +03:00
|
|
|
CPPFLAGS += -I/usr/include/ncursesw
|
2015-05-27 20:45:52 +03:00
|
|
|
LDFLAGS += -rdynamic
|
2013-11-07 22:49:12 +04:00
|
|
|
endif
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2015-11-05 19:59:29 +03:00
|
|
|
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare
|
|
|
|
|
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
|
|
|
|
2012-08-08 15:39:31 +04:00
|
|
|
-include $(deps)
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2015-09-21 15:38:09 +03:00
|
|
|
.%$(suffix).o: %.cc
|
|
|
|
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -MD -MP -MF $(addprefix ., $(<:.cc=$(suffix).d)) -c -o $@ $<
|
2011-09-02 20:51:20 +04:00
|
|
|
|
2014-10-11 22:50:30 +04:00
|
|
|
test:
|
|
|
|
cd ../test && ./run
|
2011-09-08 18:28:42 +04:00
|
|
|
tags:
|
|
|
|
ctags -R
|
|
|
|
|
2012-10-11 00:44:06 +04:00
|
|
|
clean:
|
2013-04-03 20:52:16 +04:00
|
|
|
rm -f .*.o .*.d kak tags
|
2012-10-11 00:44:06 +04:00
|
|
|
|
2012-12-11 16:45:04 +04:00
|
|
|
XDG_CONFIG_HOME ?= $(HOME)/.config
|
|
|
|
|
|
|
|
userconfig:
|
|
|
|
mkdir -p $(XDG_CONFIG_HOME)/kak/autoload
|
2013-12-24 01:50:49 +04:00
|
|
|
ln -s $(CURDIR)/../rc/*.kak $(XDG_CONFIG_HOME)/kak/autoload/
|
2013-12-24 01:26:07 +04:00
|
|
|
|
|
|
|
install: kak
|
|
|
|
mkdir -p $(bindir)
|
2014-04-03 22:55:57 +04:00
|
|
|
install -m 0755 kak $(bindir)
|
2013-12-24 01:26:07 +04:00
|
|
|
mkdir -p $(sharedir)/rc
|
2014-04-03 22:55:57 +04:00
|
|
|
install -m 0644 ../share/kak/kakrc $(sharedir)
|
|
|
|
install -m 0644 ../rc/* $(sharedir)/rc
|
2015-08-29 23:47:50 +03:00
|
|
|
[ -e $(sharedir)/autoload ] || ln -s rc $(sharedir)/autoload
|
2015-07-14 20:44:03 +03:00
|
|
|
mkdir -p $(sharedir)/colors
|
|
|
|
install -m 0644 ../colors/* $(sharedir)/colors
|
2013-12-24 01:26:07 +04:00
|
|
|
mkdir -p $(docdir)
|
2014-04-03 22:55:57 +04:00
|
|
|
install -m 0644 ../README.asciidoc $(docdir)
|
|
|
|
install -m 0644 ../doc/* $(docdir)
|
2013-12-24 01:26:07 +04:00
|
|
|
|
|
|
|
.PHONY: tags userconfig install
|