This repository has been archived by the owner on Feb 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
162 lines (124 loc) · 4.88 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# do not include any other makefiles above this line.
THISMAKEFILE=$(lastword $(MAKEFILE_LIST))
# allow trivial out-of-tree builds
src_dir=$(dir $(THISMAKEFILE))
VPATH=$(src_dir)
############################################################################
# Installation paths
prefix = /usr
bindir = $(prefix)/bin
datarootdir = $(prefix)/share
mandir = $(datarootdir)/man
man1dir = $(mandir)/man1
desktopfilesdir = $(datarootdir)/applications
############################################################################
# Features
# Uncomment to enable info banner on holding Ctrl+Alt+I.
OPT_CPPFLAGS += -DINFOBANNER
# Uncomment to show the same banner on moves and resizes. Can be SLOW!
#OPT_CPPFLAGS += -DINFOBANNER_MOVERESIZE
# Uncomment to support the Xrandr extension (thanks, Yura Semashko).
OPT_CPPFLAGS += -DRANDR
OPT_LDLIBS += -lXrandr
# Uncomment to support shaped windows.
OPT_CPPFLAGS += -DSHAPE
OPT_LDLIBS += -lXext
# Uncomment to support Xinerama
OPT_CPPFLAGS += -DXINERAMA
OPT_LDLIBS += -lXinerama
# Uncomment to enable solid window drags. This can be slow on old systems.
OPT_CPPFLAGS += -DSOLIDDRAG
# Uncomment to compile in certain text messages like help. Recommended.
OPT_CPPFLAGS += -DSTDIO
# Uncomment to support virtual desktops.
OPT_CPPFLAGS += -DVWM
# Uncomment to move pointer around on certain actions.
OPT_CPPFLAGS += -DWARP_POINTER
# Uncomment to use pango for rendering title text
OPT_CPPFLAGS += -DPANGO $(shell pkg-config --cflags-only-I freetype2 pango pangoxft)
OPT_LDLIBS += $(shell pkg-config --libs pango pangoxft)
# Uncomment to include whatever debugging messages I've left in this release.
#OPT_CPPFLAGS += -DDEBUG # miscellaneous debugging
#OPT_CPPFLAGS += -DXDEBUG # show some X calls
############################################################################
# Include file and library paths
# Most Linux distributions don't separate out X11 from the rest of the
# system, but some other OSs still require extra information:
# Solaris 10:
#OPT_CPPFLAGS += -I/usr/X11/include
#LDFLAGS += -R/usr/X11/lib -L/usr/X11/lib
# Solaris <= 9 doesn't support RANDR feature above, so disable it there
# Solaris 9 doesn't fully implement ISO C99 libc, to suppress warnings, use:
#OPT_CPPFLAGS += -D__EXTENSIONS__
# Mac OS X:
#LDFLAGS += -L/usr/X11R6/lib
############################################################################
# Build tools
# Change this if you don't use gcc:
CC = gcc
# Override if desired:
CFLAGS = -Os -std=c99
WARN = -Wall -W -Wstrict-prototypes -Wpointer-arith -Wcast-align \
-Wshadow -Waggregate-return -Wnested-externs -Winline -Wwrite-strings \
-Wundef -Wsign-compare -Wmissing-prototypes -Wredundant-decls
# Enable to spot explicit casts that strip constant qualifiers.
# generally not needed, since an explicit cast should signify
# the programmer guarantees no undefined behaviour.
#WARN += -Wcast-qual
# For Cygwin:
#EXEEXT = .exe
# Override INSTALL_STRIP if you don't want a stripped binary
INSTALL = install
INSTALL_STRIP = -s
INSTALL_DIR = $(INSTALL) -d -m 0755
INSTALL_FILE = $(INSTALL) -m 0644
INSTALL_PROGRAM = $(INSTALL) -m 0755 $(INSTALL_STRIP)
############################################################################
# You shouldn't need to change anything beyond this point
version = 1.1.0
distname = evilwm-$(version)
# Generally shouldn't be overridden:
# _SVID_SOURCE for strdup and putenv
# _POSIX_C_SOURCE=200112L for sigaction
EVILWM_CPPFLAGS = $(CPPFLAGS) $(OPT_CPPFLAGS) -DVERSION=\"$(version)\" \
-D_SVID_SOURCE=1 \
-D_POSIX_C_SOURCE=200112L \
$(NULL)
EVILWM_CFLAGS = -std=c99 $(CFLAGS) $(WARN)
EVILWM_LDLIBS = -lX11 $(OPT_LDLIBS) $(LDLIBS)
HEADERS = evilwm.h keymap.h list.h log.h xconfig.h
OBJS = annotations.o client.o events.o ewmh.o list.o main.o misc.o new.o screen.o xconfig.o
.PHONY: all
all: evilwm$(EXEEXT)
$(OBJS): $(HEADERS)
%.o: %.c
$(CC) $(EVILWM_CFLAGS) $(EVILWM_CPPFLAGS) -c $<
evilwm$(EXEEXT): $(OBJS)
$(CC) -o $@ $(OBJS) $(LDFLAGS) $(EVILWM_LDLIBS)
.PHONY: install
install: evilwm$(EXEEXT)
$(INSTALL_DIR) $(DESTDIR)$(bindir)
$(INSTALL_PROGRAM) evilwm$(EXEEXT) $(DESTDIR)$(bindir)/
$(INSTALL_DIR) $(DESTDIR)$(man1dir)
$(INSTALL_FILE) $(src_dir)/evilwm.1 $(DESTDIR)$(man1dir)/
$(INSTALL_DIR) $(DESTDIR)$(desktopfilesdir)
$(INSTALL_FILE) $(src_dir)/evilwm.desktop $(DESTDIR)$(desktopfilesdir)/
.PHONY: uninstall
uninstall:
rm -f $(DESTDIR)$(bindir)/evilwm$(EXEEXT)
rm -f $(DESTDIR)$(man1dir)/evilwm.1
rm -f $(DESTDIR)$(desktopfilesdir)/evilwm.desktop
.PHONY: dist
dist:
git archive --format=tar --prefix=$(distname)/ HEAD > ../$(distname).tar
gzip -f9 ../$(distname).tar
.PHONY: debuild
debuild: dist
-cd ..; rm -rf $(distname)/ $(distname).orig/
cd ..; mv $(distname).tar.gz evilwm_$(version).orig.tar.gz
cd ..; tar xfz evilwm_$(version).orig.tar.gz
rsync -axH debian --exclude='debian/.git/' --exclude='debian/_darcs/' ../$(distname)/
cd ../$(distname); debuild
.PHONY: clean
clean:
rm -f evilwm$(EXEEXT) $(OBJS)