2019-01-22 09:41:58 +01:00
|
|
|
debug ?= no
|
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
|
|
|
|
|
2018-12-19 09:31:04 +01:00
|
|
|
ifneq (,$(findstring address,$(sanitize)))
|
|
|
|
CPPFLAGS += -fsanitize=address
|
|
|
|
LDFLAGS += -lasan
|
|
|
|
sanitize_suffix := $(sanitize_suffix)a
|
|
|
|
endif
|
|
|
|
ifneq (,$(findstring undefined,$(sanitize)))
|
|
|
|
CPPFLAGS += -fsanitize=undefined
|
|
|
|
LDFLAGS += -lubsan
|
|
|
|
sanitize_suffix := $(sanitize_suffix)u
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(sanitize_suffix))
|
|
|
|
suffix := $(suffix).san_$(sanitize_suffix)
|
|
|
|
endif
|
|
|
|
|
2018-04-14 05:05:59 +02:00
|
|
|
version ?= $(shell if [ -f .version ]; then cat .version; elif [ -d ../.git ]; then git describe --tags HEAD; else echo "unknown"; fi)
|
2018-04-09 04:56:17 +02:00
|
|
|
|
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
|
|
|
|
2018-02-18 05:43:28 +01:00
|
|
|
ifeq ($(static),yes)
|
2018-02-22 13:56:14 +01:00
|
|
|
PKG_CONFIG_FLAGS += --static
|
2018-02-18 05:43:28 +01:00
|
|
|
LDFLAGS += -static -pthread
|
|
|
|
endif
|
|
|
|
|
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
|
2019-03-26 03:04:08 +01:00
|
|
|
NCURSES_CFLAGS += -I$(PREFIX)/opt/ncurses/include
|
|
|
|
CPPFLAGS += -I/opt/local/include
|
2017-11-01 07:08:03 +01:00
|
|
|
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
|
2018-04-17 02:31:23 +02:00
|
|
|
else ifeq ($(os),OpenBSD)
|
|
|
|
LIBS += -lncursesw
|
2018-06-19 11:24:41 +02:00
|
|
|
CPPFLAGS += -D'KAK_BIN_PATH="$(bindir)/kak"' -I/usr/local/include
|
2018-04-17 02:31:23 +02:00
|
|
|
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
|
2018-02-03 02:41:00 +01:00
|
|
|
ifeq ($(PKG_CONFIG),)
|
|
|
|
$(error "pkg-config not found in PATH")
|
|
|
|
endif
|
|
|
|
|
2018-02-18 05:43:28 +01:00
|
|
|
LIBS += $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --libs ncursesw)
|
2019-03-26 03:04:08 +01:00
|
|
|
NCURSES_CFLAGS += $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --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
|
|
|
|
2019-02-09 05:41:09 +01:00
|
|
|
CXXFLAGS += -pedantic -std=c++17 -g -Wall -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-address
|
2015-11-05 17:59:29 +01:00
|
|
|
|
2018-02-03 02:41:00 +01:00
|
|
|
all : kak
|
2017-02-27 21:11:56 +01:00
|
|
|
|
|
|
|
kak : kak$(suffix)
|
|
|
|
ln -sf $< $@
|
|
|
|
|
2018-04-09 04:56:17 +02:00
|
|
|
kak$(suffix) : $(objects) .version.o
|
|
|
|
$(CXX) $(LDFLAGS) $(CXXFLAGS) $(objects) .version.o $(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
|
2019-03-05 10:56:44 +01:00
|
|
|
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -MD -MP -MF $(addprefix ., $(<:.cc=$(suffix).d)) -c -o $@ $<
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2019-03-26 03:04:08 +01:00
|
|
|
.ncurses_ui$(suffix).o: CPPFLAGS += $(NCURSES_CFLAGS)
|
|
|
|
|
2018-04-09 04:56:17 +02:00
|
|
|
.version.o: .version.cc
|
|
|
|
$(CXX) $(CPPFLAGS) $(CXXFLAGS) -c -o $@ $<
|
2018-07-26 13:56:34 +02:00
|
|
|
|
2018-04-09 04:56:17 +02:00
|
|
|
.version.cc: FORCE
|
|
|
|
@printf "%s" 'namespace Kakoune { const char* version = "$(version)"; }' > .version.cc.tmp
|
|
|
|
@if cmp -s .version.cc.tmp .version.cc; then rm .version.cc.tmp; else mv .version.cc.tmp .version.cc; fi
|
|
|
|
|
2016-02-04 14:10:04 +01:00
|
|
|
# Generate the man page
|
2017-11-18 05:10:08 +01:00
|
|
|
ifeq ($(gzip_man),yes)
|
2018-10-21 13:02:23 +02:00
|
|
|
../doc/kak.1.gz: ../doc/kak.1
|
2019-05-28 10:25:41 +02:00
|
|
|
gzip -n -9 -f < $< > $@
|
2017-11-18 05:10:08 +01:00
|
|
|
man: ../doc/kak.1.gz
|
|
|
|
else
|
|
|
|
man: ../doc/kak.1
|
|
|
|
endif
|
2016-02-03 20:09:41 +01:00
|
|
|
|
2016-09-25 08:12:37 +02:00
|
|
|
check: test
|
2018-12-06 12:29:06 +01:00
|
|
|
test: kak
|
2014-10-11 20:50:30 +02:00
|
|
|
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
|
|
|
|
|
2018-04-09 04:56:17 +02:00
|
|
|
dist:
|
|
|
|
@if ! [ -d ../.git ]; then echo "make dist can only run from a git repo"; false; fi
|
|
|
|
@if git status -s | grep -qEv '^\?\?'; then echo "working tree is not clean"; false; fi
|
2018-09-04 00:19:11 +02:00
|
|
|
cd ../; \
|
|
|
|
basename="kakoune-$$(echo "$(version)" | sed -e s/^v//)"; \
|
|
|
|
git archive --format=tar --prefix=$${basename}/ HEAD -o $${basename}.tar; \
|
|
|
|
echo "$(version)" > src/.version; \
|
|
|
|
tar --transform "s,^,$${basename}/," -rf $${basename}.tar src/.version; \
|
|
|
|
rm src/.version; \
|
|
|
|
bzip2 $${basename}.tar;
|
2018-04-09 04:56:17 +02:00
|
|
|
|
2016-09-25 08:12:37 +02:00
|
|
|
distclean: clean
|
2017-03-26 09:38:24 +02:00
|
|
|
rm -f kak kak$(suffix)
|
2019-03-22 17:23:50 +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) \
|
2019-03-22 02:49:04 +01:00
|
|
|
$(sharedir)/rc \
|
2016-09-25 08:12:37 +02:00
|
|
|
$(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
|
2019-03-22 02:49:04 +01:00
|
|
|
cp -r ../rc/* $(sharedir)/rc
|
2019-03-22 20:21:00 +01:00
|
|
|
find $(sharedir)/rc -type f -exec chmod 0644 {} +
|
2017-02-27 21:11:27 +01:00
|
|
|
[ -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
|
|
|
|
2018-04-09 04:56:17 +02:00
|
|
|
.PHONY: check TAGS clean dist distclean installdirs install install-strip uninstall
|
|
|
|
.PHONY: tags test man kak FORCE
|