2011-09-02 20:51:20 +04:00
|
|
|
sources := $(wildcard *.cc)
|
2013-04-03 20:52:16 +04:00
|
|
|
objects := $(addprefix ., $(sources:.cc=.o))
|
2011-09-02 20:51:20 +04:00
|
|
|
deps := $(addprefix ., $(sources:.cc=.d))
|
|
|
|
|
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
|
|
|
|
|
2015-05-26 20:42:09 +03:00
|
|
|
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
|
2013-11-07 22:49:12 +04:00
|
|
|
|
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-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
|
|
|
|
2013-02-27 22:02:01 +04:00
|
|
|
debug ?= yes
|
|
|
|
ifeq ($(debug),yes)
|
2015-07-25 04:20:33 +03:00
|
|
|
CPPFLAGS += -DKAK_DEBUG
|
2013-02-27 22:02:01 +04:00
|
|
|
else
|
|
|
|
ifeq ($(debug),no)
|
|
|
|
CXXFLAGS += -O3
|
|
|
|
else
|
|
|
|
$(error debug should be either yes or no)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
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
|
|
|
|
2013-04-03 20:52:16 +04:00
|
|
|
.%.o: %.cc
|
2015-07-25 04:20:33 +03:00
|
|
|
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -MD -MP -MF $(addprefix ., $(<:.cc=.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-06-27 18:12:04 +03:00
|
|
|
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
|