]> git.sur5r.net Git - i3/i3/blob - common.mk
Merge branch 'nagbar-wrap' into next
[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 # The escaping is absurd, but we need to escape for shell, sed, make, define
16 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'))"
17 VERSION:=$(shell git describe --tags --abbrev=0)
18
19 ifeq ($(shell which pkg-config 2>/dev/null 1>/dev/null || echo 1),1)
20 $(error "pkg-config was not found")
21 endif
22
23 # An easier way to get CFLAGS and LDFLAGS falling back in case there's
24 # no pkg-config support for certain libraries
25 cflags_for_lib = $(shell pkg-config --silence-errors --cflags $(1))
26 ldflags_for_lib = $(shell pkg-config --exists $(1) && pkg-config --libs $(1) || echo -l$(2))
27
28 CFLAGS += -std=c99
29 CFLAGS += -pipe
30 CFLAGS += -Wall
31 # unused-function, unused-label, unused-variable are turned on by -Wall
32 # We don’t want unused-parameter because of the use of many callbacks
33 CFLAGS += -Wunused-value
34 CFLAGS += -Iinclude
35 CFLAGS += $(call cflags_for_lib, xcb-keysyms)
36 ifeq ($(shell pkg-config --exists xcb-util || echo 1),1)
37 CPPFLAGS += -DXCB_COMPAT
38 CFLAGS += $(call cflags_for_lib, xcb-atom)
39 CFLAGS += $(call cflags_for_lib, xcb-aux)
40 else
41 CFLAGS += $(call cflags_for_lib, xcb-util)
42 endif
43 CFLAGS += $(call cflags_for_lib, xcb-icccm)
44 CFLAGS += $(call cflags_for_lib, xcb-xinerama)
45 CFLAGS += $(call cflags_for_lib, xcb-randr)
46 CFLAGS += $(call cflags_for_lib, xcb)
47 CFLAGS += $(call cflags_for_lib, xcursor)
48 CFLAGS += $(call cflags_for_lib, x11)
49 CFLAGS += $(call cflags_for_lib, yajl)
50 CFLAGS += $(call cflags_for_lib, libev)
51 CFLAGS += $(call cflags_for_lib, libpcre)
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 LIBS += $(call ldflags_for_lib, libpcre, pcre)
74
75 # Please test if -Wl,--as-needed works on your platform and send me a patch.
76 # it is known not to work on Darwin (Mac OS X)
77 ifneq (,$(filter Linux GNU GNU/%, $(UNAME)))
78 LDFLAGS += -Wl,--as-needed
79 endif
80
81 ifeq ($(UNAME),NetBSD)
82 # We need -idirafter instead of -I to prefer the system’s iconv over GNU libiconv
83 CFLAGS += -idirafter /usr/pkg/include
84 LDFLAGS += -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/pkg/lib
85 endif
86
87 ifeq ($(UNAME),OpenBSD)
88 CFLAGS += -I${X11BASE}/include
89 LIBS += -liconv
90 LDFLAGS += -L${X11BASE}/lib
91 endif
92
93 ifeq ($(UNAME),FreeBSD)
94 LIBS += -liconv
95 endif
96
97 ifeq ($(UNAME),Darwin)
98 LIBS += -liconv
99 endif
100
101 # Fallback for libyajl 1 which did not include yajl_version.h. We need
102 # YAJL_MAJOR from that file to decide which code path should be used.
103 CFLAGS += -idirafter $(TOPDIR)/yajl-fallback
104
105 ifneq (,$(filter Linux GNU GNU/%, $(UNAME)))
106 CPPFLAGS += -D_GNU_SOURCE
107 endif
108
109 ifeq ($(DEBUG),1)
110 # Extended debugging flags, macros shall be available in gcc
111 CFLAGS += -gdwarf-2
112 CFLAGS += -g3
113 else
114 CFLAGS += -O2
115 CFLAGS += -freorder-blocks-and-partition
116 endif
117
118 ifeq ($(COVERAGE),1)
119 CFLAGS += -fprofile-arcs -ftest-coverage
120 LIBS += -lgcov
121 endif
122
123 # Don’t print command lines which are run
124 .SILENT:
125
126 # Always remake the following targets
127 .PHONY: install clean dist distclean
128