]> git.sur5r.net Git - i3/i3/blob - Makefile
Don’t rely on libxcb-wm any longer, as it got removed in libxcb 0.3.4
[i3/i3] / Makefile
1 UNAME=$(shell uname)
2 DEBUG=1
3 INSTALL=install
4 MAKE=make
5 GIT_VERSION=$(shell git describe --tags --always)
6 VERSION=$(shell git describe --tags --abbrev=0)
7
8 CFLAGS += -std=c99
9 CFLAGS += -pipe
10 CFLAGS += -Wall
11 CFLAGS += -Wunused
12 CFLAGS += -Iinclude
13 CFLAGS += -I/usr/local/include
14 CFLAGS += -DI3_VERSION=\"${GIT_VERSION}\"
15
16 LDFLAGS += -lm
17 LDFLAGS += -lxcb-event
18 LDFLAGS += -lxcb-property
19 LDFLAGS += -lxcb-keysyms
20 LDFLAGS += -lxcb-atom
21 LDFLAGS += -lxcb-aux
22 LDFLAGS += -lxcb-icccm
23 LDFLAGS += -lxcb-xinerama
24 LDFLAGS += -lX11
25 LDFLAGS += -L/usr/local/lib -L/usr/pkg/lib
26
27 ifeq ($(UNAME),NetBSD)
28 # We need -idirafter instead of -I to prefer the system’s iconv over GNU libiconv
29 CFLAGS += -idirafter /usr/pkg/include
30 LDFLAGS += -Wl,-rpath,/usr/local/lib -Wl,-rpath,/usr/pkg/lib
31 endif
32
33 ifeq ($(UNAME),FreeBSD)
34 LDFLAGS += -liconv
35 endif
36
37 ifeq ($(UNAME),Linux)
38 CFLAGS += -D_GNU_SOURCE
39 endif
40
41 ifeq ($(DEBUG),1)
42 # Extended debugging flags, macros shall be available in gcc
43 CFLAGS += -gdwarf-2
44 CFLAGS += -g3
45 else
46 CFLAGS += -O2
47 endif
48
49 # Don’t print command lines which are run
50 .SILENT:
51
52 # Always remake the following targets
53 .PHONY: install clean dist distclean
54
55 # Depend on the object files of all source-files in src/*.c and on all header files
56 FILES=$(patsubst %.c,%.o,$(wildcard src/*.c))
57 HEADERS=$(wildcard include/*.h)
58
59 # Depend on the specific file (.c for each .o) and on all headers
60 src/%.o: src/%.c ${HEADERS}
61         echo "CC $<"
62         $(CC) $(CFLAGS) -c -o $@ $<
63
64 all: ${FILES}
65         echo "LINK i3"
66         $(CC) -o i3 ${FILES} $(LDFLAGS)
67
68 install: all
69         echo "INSTALL"
70         $(INSTALL) -d -m 0755 $(DESTDIR)/usr/bin
71         $(INSTALL) -d -m 0755 $(DESTDIR)/etc/i3
72         $(INSTALL) -m 0755 i3 $(DESTDIR)/usr/bin/
73         test -e $(DESTDIR)/etc/i3/config || $(INSTALL) -m 0644 i3.config $(DESTDIR)/etc/i3/config
74
75 dist: clean
76         [ ! -f i3-${VERSION} ] || rm -rf i3-${VERSION}
77         [ ! -e i3-${VERSION}.tar.bz2 ] || rm i3-${VERSION}.tar.bz2
78         mkdir i3-${VERSION}
79         cp DEPENDS GOALS LICENSE PACKAGE-MAINTAINER TODO i3.config i3-${VERSION}
80         cp -r src include docs man i3-${VERSION}
81         sed -e 's/^GIT_VERSION=\(.*\)/GIT_VERSION=${GIT_VERSION}/g;s/^VERSION=\(.*\)/VERSION=${VERSION}/g' Makefile > i3-${VERSION}/Makefile
82         tar cf i3-${VERSION}.tar i3-${VERSION}
83         bzip2 -9 i3-${VERSION}.tar
84         rm -rf i3-${VERSION}
85
86 clean:
87         rm -f src/*.o
88         $(MAKE) -C docs clean
89         $(MAKE) -C man clean
90
91 distclean: clean
92         rm -f i3