2015-09-21 14:38:09 +02:00
|
|
|
debug ?= yes
|
|
|
|
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 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))
|
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
|
|
|
|
|
|
|
bindir := $(DESTDIR)$(PREFIX)/bin
|
|
|
|
sharedir := $(DESTDIR)$(PREFIX)/share/kak
|
|
|
|
docdir := $(DESTDIR)$(PREFIX)/share/doc/kak
|
|
|
|
|
2015-05-26 19:42:09 +02:00
|
|
|
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
|
2013-11-07 19:49:12 +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-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-07-25 03:20:33 +02:00
|
|
|
CPPFLAGS += -I/usr/include/ncursesw
|
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
|
|
|
|
|
|
|
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
|
|
|
|
2014-10-11 20:50:30 +02:00
|
|
|
test:
|
|
|
|
cd ../test && ./run
|
2011-09-08 16:28:42 +02:00
|
|
|
tags:
|
|
|
|
ctags -R
|
|
|
|
|
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
|
|
|
|
|
|
|
|
userconfig:
|
|
|
|
mkdir -p $(XDG_CONFIG_HOME)/kak/autoload
|
2013-12-23 22:50:49 +01:00
|
|
|
ln -s $(CURDIR)/../rc/*.kak $(XDG_CONFIG_HOME)/kak/autoload/
|
2013-12-23 22:26:07 +01:00
|
|
|
|
|
|
|
install: kak
|
|
|
|
mkdir -p $(bindir)
|
2014-04-03 20:55:57 +02:00
|
|
|
install -m 0755 kak $(bindir)
|
2013-12-23 22:26:07 +01:00
|
|
|
mkdir -p $(sharedir)/rc
|
2014-04-03 20:55:57 +02:00
|
|
|
install -m 0644 ../share/kak/kakrc $(sharedir)
|
|
|
|
install -m 0644 ../rc/* $(sharedir)/rc
|
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
|
2013-12-23 22:26:07 +01:00
|
|
|
mkdir -p $(docdir)
|
2014-04-03 20:55:57 +02:00
|
|
|
install -m 0644 ../README.asciidoc $(docdir)
|
|
|
|
install -m 0644 ../doc/* $(docdir)
|
2013-12-23 22:26:07 +01:00
|
|
|
|
|
|
|
.PHONY: tags userconfig install
|