]> git.sur5r.net Git - i3/i3/blob - common.mk
Fix linking by linking libi3 first and its dependencies afterwards
[i3/i3] / common.mk
1 UNAME=$(shell uname)
2 DEBUG=1
3 COVERAGE=0
4 INSTALL=install
5 FLEX=flex
6 BISON=bison
7 ifndef PREFIX
8   PREFIX=/usr
9 endif
10 ifndef SYSCONFDIR
11   ifeq ($(PREFIX),/usr)
12     SYSCONFDIR=/etc
13   else
14     SYSCONFDIR=$(PREFIX)/etc
15   endif
16 endif
17 # The escaping is absurd, but we need to escape for shell, sed, make, define
18 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'))"
19 VERSION:=$(shell git describe --tags --abbrev=0)
20
21
22 ## Generic flags
23
24 # Default CFLAGS that users should be able to override
25 ifeq ($(DEBUG),1)
26 # Extended debugging flags, macros shall be available in gcc
27 CFLAGS ?= -pipe -gdwarf-2 -g3
28 else
29 CFLAGS ?= -pipe -O2 -freorder-blocks-and-partition
30 endif
31
32 # Default LDFLAGS that users should be able to override
33 LDFLAGS ?= $(as_needed_LDFLAG)
34
35 # Common CFLAGS for all i3 related binaries
36 I3_CFLAGS  = -std=c99
37 I3_CFLAGS += -Wall
38 # unused-function, unused-label, unused-variable are turned on by -Wall
39 # We don’t want unused-parameter because of the use of many callbacks
40 I3_CFLAGS += -Wunused-value
41 I3_CFLAGS += -Iinclude
42
43 I3_CPPFLAGS  = -DI3_VERSION=\"${GIT_VERSION}\"
44 I3_CPPFLAGS += -DSYSCONFDIR=\"${SYSCONFDIR}\"
45
46
47 ## Libraries flags
48
49 ifeq ($(shell which pkg-config 2>/dev/null 1>/dev/null || echo 1),1)
50 $(error "pkg-config was not found")
51 endif
52
53 # An easier way to get CFLAGS and LDFLAGS falling back in case there's
54 # no pkg-config support for certain libraries.
55 #
56 # NOTE that you must not use a blank after comma when calling this:
57 #     $(call ldflags_for_lib name, fallback) # bad
58 #     $(call ldflags_for_lib name,fallback) # good
59 # Otherwise, the compiler will get -l foo instead of -lfoo
60 #
61 # We redirect stderr to /dev/null because pkg-config prints an error if support
62 # for gnome-config was enabled but gnome-config is not actually installed.
63 cflags_for_lib = $(shell pkg-config --silence-errors --cflags $(1) 2>/dev/null)
64 ldflags_for_lib = $(shell pkg-config --exists 2>/dev/null $(1) && pkg-config --libs $(1) 2>/dev/null || echo -l$(2))
65
66 # XCB common stuff
67 XCB_CFLAGS  := $(call cflags_for_lib, xcb)
68 XCB_CFLAGS  += $(call cflags_for_lib, xcb-event)
69 XCB_LIBS    := $(call ldflags_for_lib, xcb,xcb)
70 XCB_LIBS    += $(call ldflags_for_lib, xcb-event,xcb-event)
71 ifeq ($(shell pkg-config --exists xcb-util 2>/dev/null || echo 1),1)
72 XCB_CFLAGS  += $(call cflags_for_lib, xcb-atom)
73 XCB_CFLAGS  += $(call cflags_for_lib, xcb-aux)
74 XCB_LIBS    += $(call ldflags_for_lib, xcb-atom,xcb-atom)
75 XCB_LIBS    += $(call ldflags_for_lib, xcb-aux,xcb-aux)
76 else
77 XCB_CFLAGS  += $(call cflags_for_lib, xcb-util)
78 XCB_LIBS    += $(call ldflags_for_lib, xcb-util)
79 endif
80
81 # XCB keyboard stuff
82 XCB_KBD_CFLAGS := $(call cflags_for_lib, xcb-keysyms)
83 XCB_KBD_LIBS   := $(call ldflags_for_lib, xcb-keysyms,xcb-keysyms)
84
85 # XCB WM stuff
86 XCB_WM_CFLAGS := $(call cflags_for_lib, xcb-icccm)
87 XCB_WM_CFLAGS += $(call cflags_for_lib, xcb-xinerama)
88 XCB_WM_CFLAGS += $(call cflags_for_lib, xcb-randr)
89 XCB_WM_LIBS   := $(call ldflags_for_lib, xcb-icccm,xcb-icccm)
90 XCB_WM_LIBS   += $(call ldflags_for_lib, xcb-xinerama,xcb-xinerama)
91 XCB_WM_LIBS   += $(call ldflags_for_lib, xcb-randr,xcb-randr)
92
93 # Xlib
94 X11_CFLAGS := $(call cflags_for_lib, x11)
95 X11_LIBS   := $(call ldflags_for_lib, x11,X11)
96
97 # Xcursor
98 XCURSOR_CFLAGS := $(call cflags_for_lib, xcursor)
99 XCURSOR_LIBS   := $(call ldflags_for_lib, xcursor,Xcursor)
100
101 # yajl
102 YAJL_CFLAGS := $(call cflags_for_lib, yajl)
103 # Fallback for libyajl 1 which did not include yajl_version.h. We need
104 # YAJL_MAJOR from that file to decide which code path should be used.
105 YAJL_CFLAGS += -idirafter $(TOPDIR)/yajl-fallback
106 YAJL_LIBS   := $(call ldflags_for_lib, yajl,yajl)
107
108 #libev
109 LIBEV_CFLAGS := $(call cflags_for_lib, libev)
110 LIBEV_LIBS   := $(call ldflags_for_lib, libev,ev)
111
112 # libpcre
113 PCRE_CFLAGS := $(call cflags_for_lib, libpcre)
114 ifeq ($(shell pkg-config --atleast-version=8.10 libpcre 2>/dev/null && echo 1),1)
115 I3_CPPFLAGS += -DPCRE_HAS_UCP=1
116 endif
117 PCRE_LIBS   := $(call ldflags_for_lib, libpcre,pcre)
118
119 # startup-notification
120 LIBSN_CFLAGS := $(call cflags_for_lib, libstartup-notification-1.0)
121 LIBSN_LIBS   := $(call ldflags_for_lib, libstartup-notification-1.0,startup-notification-1)
122
123 # libi3
124 LIBS = -L$(TOPDIR) -li3
125
126 ## Platform-specific flags
127
128 # Please test if -Wl,--as-needed works on your platform and send me a patch.
129 # it is known not to work on Darwin (Mac OS X)
130 ifneq (,$(filter Linux GNU GNU/%, $(UNAME)))
131 as_needed_LDFLAG = -Wl,--as-needed
132 endif
133
134 ifeq ($(UNAME),NetBSD)
135 # We need -idirafter instead of -I to prefer the system’s iconv over GNU libiconv
136 I3_CFLAGS += -idirafter /usr/pkg/include
137 I3_LDFLAGS += -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/pkg/lib
138 endif
139
140 ifeq ($(UNAME),OpenBSD)
141 I3_CFLAGS += -I${X11BASE}/include
142 LIBS += -liconv
143 I3_LDFLAGS += -L${X11BASE}/lib
144 endif
145
146 ifeq ($(UNAME),FreeBSD)
147 LIBS += -liconv
148 endif
149
150 ifeq ($(UNAME),Darwin)
151 LIBS += -liconv
152 else
153 # Darwin (Mac OS X) doesn’t have librt
154 LIBS += -lrt
155 endif
156
157 ifneq (,$(filter Linux GNU GNU/%, $(UNAME)))
158 I3_CPPFLAGS += -D_GNU_SOURCE
159 endif
160
161
162 ifeq ($(COVERAGE),1)
163 I3_CFLAGS += -fprofile-arcs -ftest-coverage
164 LIBS += -lgcov
165 endif
166
167 V ?= 0
168 ifeq ($(V),0)
169 # Don’t print command lines which are run
170 .SILENT:
171
172 # echo-ing vars
173 V_ASCIIDOC = echo ASCIIDOC $@;
174 V_A2X = echo A2X $@;
175 endif
176
177 # Always remake the following targets
178 .PHONY: install clean dist distclean
179