2015-09-21 14:38:09 +02:00
|
|
|
debug ?= yes
|
2016-11-02 23:28:05 +01:00
|
|
|
static ?= no
|
2017-11-18 05:10:08 +01:00
|
|
|
gzip_man ?= yes
|
|
|
|
|
|
|
|
ifneq ($(gzip_man),yes)
|
|
|
|
ifneq ($(gzip_man),no)
|
|
|
|
$(error gzip_man should be either yes or no)
|
|
|
|
endif
|
|
|
|
endif
|
2015-11-05 17:59:29 +01:00
|
|
|
|
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
|
|
|
|
|
2017-05-20 22:50:25 +02:00
|
|
|
sources := $(sort $(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
|
|
|
|
2018-01-11 08:40:38 +01:00
|
|
|
PKG_CONFIG ?= $(shell command -v pkg-config 2>/dev/null)
|
2017-11-17 06:32:30 +01: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
|
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)
|
2017-11-01 07:08:03 +01:00
|
|
|
LIBS += -lncurses
|
|
|
|
CPPFLAGS += -I$(PREFIX)/opt/ncurses/include -I/opt/local/include
|
|
|
|
LDFLAGS += -L$(PREFIX)/opt/ncurses/lib -L/opt/local/lib
|
2015-11-02 21:22:00 +01:00
|
|
|
else ifeq ($(os),FreeBSD)
|
2017-11-01 07:08:03 +01:00
|
|
|
LIBS += -ltinfow -lncursesw
|
2015-11-02 21:22:00 +01:00
|
|
|
CPPFLAGS += -I/usr/local/include
|
|
|
|
LDFLAGS += -L/usr/local/lib
|
2015-09-25 00:36:29 +02:00
|
|
|
else ifeq ($(os),Haiku)
|
2017-11-01 07:08:03 +01:00
|
|
|
LIBS += -lncursesw -lnetwork -lbe
|
2015-11-02 19:14:34 +01:00
|
|
|
else ifeq ($(os),DragonFly)
|
2017-11-01 07:08:03 +01:00
|
|
|
LIBS += -lncursesw
|
2015-11-02 19:14:34 +01:00
|
|
|
CPPFLAGS += -I/usr/local/include
|
|
|
|
LDFLAGS += -L/usr/local/lib
|
2015-06-16 19:49:56 +02:00
|
|
|
else ifneq (,$(findstring CYGWIN,$(os)))
|
2016-10-13 01:19:27 +02:00
|
|
|
CPPFLAGS += -D_XOPEN_SOURCE=700
|
2017-11-01 07:08:03 +01:00
|
|
|
LIBS += -lncursesw -ldbghelp
|
2014-04-03 02:54:27 +02:00
|
|
|
else
|
2017-11-17 06:32:30 +01:00
|
|
|
LIBS += $(shell $(PKG_CONFIG) --libs ncursesw)
|
|
|
|
CPPFLAGS += $(shell $(PKG_CONFIG) --cflags 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
|
|
|
|
2016-11-02 23:28:05 +01:00
|
|
|
ifeq ($(static),yes)
|
|
|
|
LIBS += -ltinfo -lgpm
|
|
|
|
LDFLAGS += -static -pthread
|
|
|
|
endif
|
|
|
|
|
2016-03-12 16:27:54 +01:00
|
|
|
CXXFLAGS += -pedantic -std=gnu++14 -g -Wall -Wextra -Wno-unused-parameter -Wno-reorder -Wno-sign-compare -Wno-address -Wno-noexcept-type -Wno-unknown-attributes -Wno-unknown-warning-option
|
2015-11-05 17:59:29 +01:00
|
|
|
|
2018-01-11 08:40:38 +01:00
|
|
|
all : check_pkg_config kak
|
|
|
|
|
|
|
|
check_pkg_config:
|
|
|
|
ifeq ($(PKG_CONFIG),)
|
|
|
|
$(error "pkg-config not found in PATH")
|
|
|
|
endif
|
2017-02-27 21:11:56 +01:00
|
|
|
|
|
|
|
kak : kak$(suffix)
|
|
|
|
ln -sf $< $@
|
|
|
|
|
|
|
|
kak$(suffix) : $(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-04 14:10:04 +01:00
|
|
|
# Generate the man page
|
2017-11-18 05:10:08 +01:00
|
|
|
ifeq ($(gzip_man),yes)
|
2017-11-18 17:33:13 +01:00
|
|
|
../doc/kak.1.gz: ../doc/kak.1.asciidoc
|
2016-02-11 19:26:08 +01:00
|
|
|
a2x --no-xmllint -f manpage $<
|
2017-05-20 22:49:36 +02:00
|
|
|
gzip -n -9 -f $(basename $<)
|
2017-11-18 05:10:08 +01:00
|
|
|
man: ../doc/kak.1.gz
|
|
|
|
else
|
2017-11-18 17:33:13 +01:00
|
|
|
../doc/kak.1: ../doc/kak.1.asciidoc
|
2017-11-18 05:10:08 +01:00
|
|
|
a2x --no-xmllint -f manpage $<
|
|
|
|
man: ../doc/kak.1
|
|
|
|
endif
|
2016-02-03 20:09:41 +01:00
|
|
|
|
2016-09-25 08:12:37 +02:00
|
|
|
check: test
|
2014-10-11 20:50:30 +02:00
|
|
|
test:
|
|
|
|
cd ../test && ./run
|
2016-09-25 08:12:37 +02:00
|
|
|
|
|
|
|
TAGS: tags
|
2011-09-08 16:28:42 +02:00
|
|
|
tags:
|
|
|
|
ctags -R
|
|
|
|
|
2012-10-10 22:44:06 +02:00
|
|
|
clean:
|
2016-09-25 08:12:37 +02:00
|
|
|
rm -f .*.o .*.d
|
|
|
|
|
|
|
|
distclean: clean
|
2017-03-26 09:38:24 +02:00
|
|
|
rm -f kak kak$(suffix)
|
2017-11-18 05:10:08 +01:00
|
|
|
find ../doc -type f \( -name \*\\.gz -o -name \*\\.1 \) -exec rm -f '{}' +
|
2016-09-25 08:12:37 +02:00
|
|
|
|
|
|
|
installdirs:
|
2017-02-27 21:11:27 +01:00
|
|
|
install -d $(bindir) \
|
|
|
|
$(sharedir)/rc/base \
|
|
|
|
$(sharedir)/rc/core \
|
2016-09-25 08:12:37 +02:00
|
|
|
$(sharedir)/rc/extra \
|
|
|
|
$(sharedir)/colors \
|
2017-08-03 10:00:02 +02:00
|
|
|
$(sharedir)/doc \
|
|
|
|
$(docdir) \
|
2016-09-25 08:12:37 +02:00
|
|
|
$(mandir)
|
|
|
|
|
2017-11-02 03:03:24 +01:00
|
|
|
install: kak man installdirs
|
2017-02-27 21:11:27 +01:00
|
|
|
install -m 0755 kak $(bindir)
|
|
|
|
install -m 0644 ../share/kak/kakrc $(sharedir)
|
2017-11-02 03:03:24 +01:00
|
|
|
install -m 0644 ../doc/pages/*.asciidoc $(sharedir)/doc
|
2017-02-27 21:11:27 +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
|
|
|
|
[ -e $(sharedir)/autoload ] || ln -s rc $(sharedir)/autoload
|
|
|
|
install -m 0644 ../colors/* $(sharedir)/colors
|
|
|
|
install -m 0644 ../README.asciidoc $(docdir)
|
2017-11-18 05:10:08 +01:00
|
|
|
ifeq ($(gzip_man),yes)
|
2017-02-27 21:11:27 +01:00
|
|
|
install -m 0644 ../doc/kak.1.gz $(mandir)
|
2017-11-18 05:10:08 +01:00
|
|
|
else
|
|
|
|
install -m 0644 ../doc/kak.1 $(mandir)
|
|
|
|
endif
|
2016-09-25 08:12:37 +02:00
|
|
|
|
|
|
|
install-strip: install
|
|
|
|
strip -s $(bindir)/kak
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
rm -rf $(bindir)/kak \
|
2017-02-27 21:11:27 +01:00
|
|
|
$(sharedir) \
|
2016-09-25 08:12:37 +02:00
|
|
|
$(docdir) \
|
2017-11-18 05:10:08 +01:00
|
|
|
$(mandir)/kak.1.gz \
|
|
|
|
$(mandir)/kak.1
|
2016-09-25 08:12:37 +02:00
|
|
|
|
|
|
|
.PHONY: check TAGS clean distclean installdirs install install-strip uninstall
|
2017-11-02 03:03:24 +01:00
|
|
|
.PHONY: tags test man kak
|