]> git.sur5r.net Git - i3/i3/blob - common.mk
ce41f287394af52d3400517ab19875dcda845f7f
[i3/i3] / common.mk
1 UNAME=$(shell uname)
2 DEBUG=1
3 COVERAGE=0
4 INSTALL=install
5 ifndef PREFIX
6   PREFIX=/usr
7 endif
8 ifndef SYSCONFDIR
9   ifeq ($(PREFIX),/usr)
10     SYSCONFDIR=/etc
11   else
12     SYSCONFDIR=$(PREFIX)/etc
13   endif
14 endif
15 TERM_EMU=xterm
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)
19
20 ifeq ($(shell which pkg-config 2>/dev/null 1>/dev/null || echo 1),1)
21 $(error "pkg-config was not found")
22 endif
23
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))
28
29 CFLAGS += -std=c99
30 CFLAGS += -pipe
31 CFLAGS += -Wall
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
35 CFLAGS += -Iinclude
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)
41 else
42 CFLAGS += $(call cflags_for_lib, xcb-util)
43 endif
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)\"
55
56 LIBS += -lm
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)
62 else
63 LIBS += $(call ldflags_for_lib, xcb-util)
64 endif
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)
73
74 # Please test if -Wl,--as-needed works on your platform and send me a patch.
75 # it is known not to work on Darwin (Mac OS X)
76 ifneq (,$(filter Linux GNU GNU/%, $(UNAME)))
77 LDFLAGS += -Wl,--as-needed
78 endif
79
80 ifeq ($(UNAME),NetBSD)
81 # We need -idirafter instead of -I to prefer the system’s iconv over GNU libiconv
82 CFLAGS += -idirafter /usr/pkg/include
83 LDFLAGS += -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/pkg/lib
84 endif
85
86 ifeq ($(UNAME),OpenBSD)
87 CFLAGS += -I${X11BASE}/include
88 LIBS += -liconv
89 LDFLAGS += -L${X11BASE}/lib
90 endif
91
92 ifeq ($(UNAME),FreeBSD)
93 LIBS += -liconv
94 endif
95
96 ifeq ($(UNAME),Darwin)
97 LIBS += -liconv
98 endif
99
100 # Fallback for libyajl 1 which did not include yajl_version.h. We need
101 # YAJL_MAJOR from that file to decide which code path should be used.
102 CFLAGS += -idirafter $(TOPDIR)/yajl-fallback
103
104 ifneq (,$(filter Linux GNU GNU/%, $(UNAME)))
105 CPPFLAGS += -D_GNU_SOURCE
106 endif
107
108 ifeq ($(DEBUG),1)
109 # Extended debugging flags, macros shall be available in gcc
110 CFLAGS += -gdwarf-2
111 CFLAGS += -g3
112 else
113 CFLAGS += -O2
114 CFLAGS += -freorder-blocks-and-partition
115 endif
116
117 ifeq ($(COVERAGE),1)
118 CFLAGS += -fprofile-arcs -ftest-coverage
119 LIBS += -lgcov
120 endif
121
122 # Don’t print command lines which are run
123 .SILENT:
124
125 # Always remake the following targets
126 .PHONY: install clean dist distclean
127