12 SYSCONFDIR=$(PREFIX)/etc
16 # The escaping is absurd, but we need to escape for shell, sed, make, define
17 GIT_VERSION:="$(shell git describe --tags --always) ($(shell git log --pretty=format:%cd --date=short -n1), branch $(shell [ -f $(TOPDIR)/.git/HEAD ] && sed 's/ref: refs\/heads\/\(.*\)/\\\\\\"\1\\\\\\"/g' $(TOPDIR)/.git/HEAD || echo 'unknown'))"
18 VERSION:=$(shell git describe --tags --abbrev=0)
20 ifeq ($(shell which pkg-config 2>/dev/null 1>/dev/null || echo 1),1)
21 $(error "pkg-config was not found")
24 # An easier way to get CFLAGS and LDFLAGS falling back in case there's
25 # no pkg-config support for certain libraries
26 cflags_for_lib = $(shell pkg-config --silence-errors --cflags $(1))
27 ldflags_for_lib = $(shell pkg-config --exists $(1) && pkg-config --libs $(1) || echo -l$(2))
32 # unused-function, unused-label, unused-variable are turned on by -Wall
33 # We don’t want unused-parameter because of the use of many callbacks
34 CFLAGS += -Wunused-value
36 CFLAGS += $(call cflags_for_lib, xcb-keysyms)
37 ifeq ($(shell pkg-config --exists xcb-util || echo 1),1)
38 CPPFLAGS += -DXCB_COMPAT
39 CFLAGS += $(call cflags_for_lib, xcb-atom)
40 CFLAGS += $(call cflags_for_lib, xcb-aux)
42 CFLAGS += $(call cflags_for_lib, xcb-util)
44 CFLAGS += $(call cflags_for_lib, xcb-icccm)
45 CFLAGS += $(call cflags_for_lib, xcb-xinerama)
46 CFLAGS += $(call cflags_for_lib, xcb-randr)
47 CFLAGS += $(call cflags_for_lib, xcb)
48 CFLAGS += $(call cflags_for_lib, xcursor)
49 CFLAGS += $(call cflags_for_lib, x11)
50 CFLAGS += $(call cflags_for_lib, yajl)
51 CFLAGS += $(call cflags_for_lib, libev)
52 CPPFLAGS += -DI3_VERSION=\"${GIT_VERSION}\"
53 CPPFLAGS += -DSYSCONFDIR=\"${SYSCONFDIR}\"
54 CPPFLAGS += -DTERM_EMU=\"$(TERM_EMU)\"
57 LIBS += $(call ldflags_for_lib, xcb-event, xcb-event)
58 LIBS += $(call ldflags_for_lib, xcb-keysyms, xcb-keysyms)
59 ifeq ($(shell pkg-config --exists xcb-util || echo 1),1)
60 LIBS += $(call ldflags_for_lib, xcb-atom, xcb-atom)
61 LIBS += $(call ldflags_for_lib, xcb-aux, xcb-aux)
63 LIBS += $(call ldflags_for_lib, xcb-util)
65 LIBS += $(call ldflags_for_lib, xcb-icccm, xcb-icccm)
66 LIBS += $(call ldflags_for_lib, xcb-xinerama, xcb-xinerama)
67 LIBS += $(call ldflags_for_lib, xcb-randr, xcb-randr)
68 LIBS += $(call ldflags_for_lib, xcb, xcb)
69 LIBS += $(call ldflags_for_lib, xcursor, Xcursor)
70 LIBS += $(call ldflags_for_lib, x11, X11)
71 LIBS += $(call ldflags_for_lib, yajl, yajl)
72 LIBS += $(call ldflags_for_lib, libev, ev)
74 ifeq ($(UNAME),NetBSD)
75 # We need -idirafter instead of -I to prefer the system’s iconv over GNU libiconv
76 CFLAGS += -idirafter /usr/pkg/include
77 LDFLAGS += -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/pkg/lib
80 ifeq ($(UNAME),OpenBSD)
81 CFLAGS += -I${X11BASE}/include
83 LDFLAGS += -L${X11BASE}/lib
86 ifeq ($(UNAME),FreeBSD)
90 ifeq ($(UNAME),Darwin)
94 # Fallback for libyajl 1 which did not include yajl_version.h. We need
95 # YAJL_MAJOR from that file to decide which code path should be used.
96 CFLAGS += -idirafter yajl-fallback
98 ifneq (,$(filter Linux GNU GNU/%, $(UNAME)))
99 CPPFLAGS += -D_GNU_SOURCE
103 # Extended debugging flags, macros shall be available in gcc
108 CFLAGS += -freorder-blocks-and-partition
112 CFLAGS += -fprofile-arcs -ftest-coverage
116 # Don’t print command lines which are run
119 # Always remake the following targets
120 .PHONY: install clean dist distclean