2011-09-02 18:51:20 +02:00
|
|
|
sources := $(wildcard *.cc)
|
|
|
|
objects := $(sources:.cc=.o)
|
|
|
|
deps := $(addprefix ., $(sources:.cc=.d))
|
|
|
|
|
2013-03-15 14:03:12 +01:00
|
|
|
CXXFLAGS += -std=c++11 -g -Wall -Wno-reorder -Wno-sign-compare
|
|
|
|
LIBS += -lmenu -lncursesw -lboost_regex
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2013-02-27 19:02:01 +01:00
|
|
|
debug ?= yes
|
|
|
|
ifeq ($(debug),yes)
|
|
|
|
CXXFLAGS += -DKAK_DEBUG
|
|
|
|
else
|
|
|
|
ifeq ($(debug),no)
|
|
|
|
CXXFLAGS += -O3
|
|
|
|
else
|
|
|
|
$(error debug should be either yes or no)
|
|
|
|
endif
|
|
|
|
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
|
|
|
|
2012-08-08 13:39:31 +02:00
|
|
|
%.o: %.cc
|
|
|
|
$(CXX) $(CXXFLAGS) -MMD -MP -MF $(addprefix ., $(<:.cc=.d)) -c -o $@ $<
|
2011-09-02 18:51:20 +02:00
|
|
|
|
2011-09-08 16:28:42 +02:00
|
|
|
tags:
|
|
|
|
ctags -R
|
|
|
|
|
2012-10-10 22:44:06 +02:00
|
|
|
clean:
|
2011-09-02 18:51:20 +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-02-21 13:36:25 +01:00
|
|
|
ln -s $(CURDIR)/rc/{asciidoc,client,cpp,diff,git,grep,kakrc,make,sh,mail}.kak $(XDG_CONFIG_HOME)/kak/autoload/
|
2012-12-11 13:45:04 +01:00
|
|
|
|
|
|
|
.PHONY: tags userconfig
|