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