]> git.sur5r.net Git - i3/i3/blob - common.mk
Add ctrl as synonym for control
[i3/i3] / common.mk
1 UNAME=$(shell uname)
2 DEBUG=1
3 INSTALL=install
4 GIT_VERSION:=$(shell git describe --tags --always)
5 VERSION:=$(shell git describe --tags --abbrev=0)
6
7 CFLAGS += -std=c99
8 CFLAGS += -pipe
9 CFLAGS += -Wall
10 CFLAGS += -Wunused
11 CFLAGS += -Iinclude
12 CFLAGS += -I/usr/local/include
13 CFLAGS += -DI3_VERSION=\"${GIT_VERSION}\"
14
15 # Check if pkg-config is installed, because without pkg-config, the following
16 # check for the version of libxcb cannot be done.
17 ifeq ($(shell which pkg-config 2>/dev/null 1>/dev/null || echo 1),1)
18 $(error "pkg-config was not found")
19 endif
20
21 ifeq ($(shell pkg-config --exists xcb-keysyms || echo 1),1)
22 $(error "pkg-config could not find xcb-keysyms.pc")
23 endif
24
25 ifeq ($(shell pkg-config --exact-version=0.3.3 xcb-keysyms && echo 1),1)
26 # xcb-keysyms fixed API from 0.3.3 to 0.3.4, so for some months, we will
27 # have this here. Distributions should upgrade their libxcb in the meantime.
28 CFLAGS += -DOLD_XCB_KEYSYMS_API
29 endif
30
31 LDFLAGS += -lm
32 LDFLAGS += -lxcb-event
33 LDFLAGS += -lxcb-property
34 LDFLAGS += -lxcb-keysyms
35 LDFLAGS += -lxcb-atom
36 LDFLAGS += -lxcb-aux
37 LDFLAGS += -lxcb-icccm
38 LDFLAGS += -lxcb-xinerama
39 LDFLAGS += -lxcb
40 LDFLAGS += -lX11
41 LDFLAGS += -lev
42 LDFLAGS += -L/usr/local/lib -L/usr/pkg/lib
43
44 ifeq ($(UNAME),NetBSD)
45 # We need -idirafter instead of -I to prefer the system’s iconv over GNU libiconv
46 CFLAGS += -idirafter /usr/pkg/include
47 LDFLAGS += -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/pkg/lib
48 endif
49
50 ifeq ($(UNAME),OpenBSD)
51 CFLAGS += -ftrampolines
52 CFLAGS += -I${X11BASE}/include
53 LDFLAGS += -liconv
54 LDFLAGS += -L${X11BASE}/lib
55 endif
56
57 ifeq ($(UNAME),FreeBSD)
58 LDFLAGS += -liconv
59 endif
60
61 ifneq (,$(filter Linux GNU GNU/%, $(UNAME)))
62 CFLAGS += -D_GNU_SOURCE
63 endif
64
65 ifeq ($(DEBUG),1)
66 # Extended debugging flags, macros shall be available in gcc
67 CFLAGS += -gdwarf-2
68 CFLAGS += -g3
69 else
70 CFLAGS += -O2
71 endif
72
73 # Don’t print command lines which are run
74 .SILENT:
75
76 # Always remake the following targets
77 .PHONY: install clean dist distclean
78