b2cb5b421c
This way, 'file --mime-type $buffer' is called only once per file rather than once per filetype detection hook.
47 lines
975 B
Makefile
47 lines
975 B
Makefile
sources := $(wildcard *.cc)
|
|
objects := $(addprefix ., $(sources:.cc=.o))
|
|
deps := $(addprefix ., $(sources:.cc=.d))
|
|
|
|
CXXFLAGS += -std=gnu++11 -g -Wall -Wno-reorder -Wno-sign-compare -pedantic
|
|
LIBS += -lncursesw
|
|
|
|
os := $(shell uname -o)
|
|
ifeq ($(os),Cygwin)
|
|
LIBS += -lboost_regex-mt
|
|
else
|
|
LIBS += -lboost_regex
|
|
endif
|
|
|
|
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
|
|
|
|
kak : $(objects)
|
|
$(CXX) $(LDFLAGS) $(CXXFLAGS) $(objects) $(LIBS) -o $@
|
|
|
|
-include $(deps)
|
|
|
|
.%.o: %.cc
|
|
$(CXX) $(CXXFLAGS) -MMD -MP -MF $(addprefix ., $(<:.cc=.d)) -c -o $@ $<
|
|
|
|
tags:
|
|
ctags -R
|
|
|
|
clean:
|
|
rm -f .*.o .*.d kak tags
|
|
|
|
XDG_CONFIG_HOME ?= $(HOME)/.config
|
|
|
|
userconfig:
|
|
mkdir -p $(XDG_CONFIG_HOME)/kak/autoload
|
|
ln -s $(CURDIR)/rc/{asciidoc,client,cpp,diff,git,grep,kakrc,mime,make,sh,mail,man}.kak $(XDG_CONFIG_HOME)/kak/autoload/
|
|
|
|
.PHONY: tags userconfig
|