kakoune/src/Makefile

40 lines
873 B
Makefile
Raw Normal View History

2011-09-02 18:51:20 +02:00
sources := $(wildcard *.cc)
2013-04-03 18:52:16 +02:00
objects := $(addprefix ., $(sources:.cc=.o))
2011-09-02 18:51:20 +02:00
deps := $(addprefix ., $(sources:.cc=.d))
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
LIBS += -lncursesw -lboost_regex
2011-09-02 18:51:20 +02: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
-include $(deps)
2011-09-02 18:51:20 +02:00
2013-04-03 18:52:16 +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:
2013-04-03 18:52:16 +02:00
rm -f .*.o .*.d kak tags
2012-10-10 22:44:06 +02:00
XDG_CONFIG_HOME ?= $(HOME)/.config
userconfig:
mkdir -p $(XDG_CONFIG_HOME)/kak/autoload
ln -s $(CURDIR)/rc/{asciidoc,client,cpp,diff,git,grep,kakrc,make,sh,mail,man}.kak $(XDG_CONFIG_HOME)/kak/autoload/
.PHONY: tags userconfig