forked from gitGNU/gnu_devilspie2
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathMakefile
More file actions
157 lines (127 loc) · 4.1 KB
/
Makefile
File metadata and controls
157 lines (127 loc) · 4.1 KB
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
#
# This file is part of devilspie2
# Copyright (C) 2011-2016 Andreas Rönnquist
# Copyright (C) 2019-2025 Darren Salt
#
# devilspie2 is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# devilspie2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with devilspie2.
# If not, see <http://www.gnu.org/licenses/>.
#
include Make.vars
ifndef CC
CC=gcc
endif
ifndef PKG_CONFIG
PKG_CONFIG=pkg-config
endif
SRC=src
OBJ=obj
BIN=bin
ifndef LUA
LUA=lua5.3
endif
# Some hardening by default.
# Set default optimisation; override CFLAGS if DEBUG is set.
STD_CFLAGS=-Wall -Wformat -Wno-format-extra-args -Wformat-security -Wformat-nonliteral -Wformat=2
ifdef DEBUG
STD_CFLAGS += -D_DEBUG
CFLAGS = -Og -g3 -ggdb
else
CFLAGS ?= -O2
endif
DEPEND=Makefile.dep
OBJECTS=$(OBJ)/config.o $(OBJ)/devilspie2.o $(OBJ)/xutils.o $(OBJ)/script.o $(OBJ)/script_functions.o $(OBJ)/error_strings.o $(OBJ)/logger.o
ifdef GTK2
PKG_GTK=gtk+-2.0
PKG_WNCK=libwnck-1.0
CHECK_GTK3=1
else
PKG_GTK=gtk+-3.0
PKG_WNCK=libwnck-3.0
endif
LUA_LIB_CFLAGS := $(shell $(PKG_CONFIG) --cflags --silence-errors $(LUA) || $(PKG_CONFIG) --cflags lua)
LUA_LIBS := $(shell $(PKG_CONFIG) --libs --silence-errors $(LUA) || $(PKG_CONFIG) --libs lua)
ifndef NO_XRANDR
RANDR_LIB_CFLAGS := $(shell $(PKG_CONFIG) --cflags xrandr)
RANDR_LIBS := $(shell $(PKG_CONFIG) --libs xrandr)
ifneq (,$(RANDR_LIBS))
RANDR_LIB_CFLAGS += -DHAVE_XRANDR
endif
else
RANDR_LIB_CFLAGS :=
RANDR_LIBS :=
endif
LIB_CFLAGS := $(shell $(PKG_CONFIG) --cflags $(PKG_GTK) $(PKG_WNCK)) $(LUA_LIB_CFLAGS) $(RANDR_LIB_CFLAGS)
STD_LDFLAGS=
LIBS := -lX11 -lXinerama $(shell $(PKG_CONFIG) --libs $(PKG_GTK) $(PKG_WNCK)) $(LUA_LIBS) $(RANDR_LIBS)
LOCAL_CFLAGS=$(STD_CFLAGS) $(DEPRECATED) $(CFLAGS) $(LIB_CFLAGS)
LOCAL_LDFLAGS=$(STD_CFLAGS) $(LDFLAGS) $(STD_LDFLAGS)
LOCAL_CPPFLAGS=$(CPPFLAGS)
ifdef CHECK_GTK3
LOCAL_CFLAGS+=-DGTK_DISABLE_SINGLE_INCLUDES
LOCAL_CFLAGS+=-DGSEAL_ENABLE
CHECK_DEPRECATED=1
endif
ifdef CHECK_DEPRECATED
LOCAL_CFLAGS+=-DGDK_PIXBUF_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED
endif
LOCAL_CFLAGS+=-DLOCALEDIR=\"$(LOCALEDIR)\" -DPACKAGE=\"$(NAME)\" -DDEVILSPIE2_VERSION=\"$(VERSION)\"
# Quiet!
$(eval $(call make_V,GEN))
$(eval $(call make_V,CC))
$(eval $(call make_V,DEP,CC))
.PHONY: all .lua
all: .lua $(BIN)/$(NAME)
${MAKE} -C po -j1 all
.lua:
@if $(PKG_CONFIG) --cflags --silence-errors $(LUA) >/dev/null; then :; else echo '$(LUA) dev files not found - falling back on system default lua' >&2; fi
$(OBJ)/%.o: $(SRC)/%.c
@mkdir -p $(OBJ)
$(V_CC)$(CC) $(LOCAL_CFLAGS) $(LOCAL_CPPFLAGS) -c $< -o $@
$(BIN)/$(NAME): $(OBJECTS)
@mkdir -p -- $(BIN)
$(V_CC)$(CC) $(LOCAL_CFLAGS) $(LOCAL_LDFLAGS) $(OBJECTS) -o $(PROG) $(LIBS)
.PHONY: clean
clean:
rm -rf -- $(OBJECTS) $(PROG) $(DEPEND)
test ! -d $(BIN) || rmdir -- $(BIN)
test ! -d $(OBJ) || rmdir -- $(OBJ)
${MAKE} -C po clean
install:
install -d $(DESTDIR)$(PREFIX)/bin
install -m 755 $(PROG) $(DESTDIR)$(PREFIX)/bin
install -d $(MANDIR)/man1
install -m 644 $(MANPAGE) $(MANDIR)/man1
install -d $(APPDIR)
install -m 644 $(NAME).desktop $(APPDIR)
${MAKE} -C po install
.PHONY: uninstall
uninstall:
rm -f $(DESTDIR)$(PREFIX)/$(PROG)
${MAKE} -C po uninstall
$(DEPEND):
$(V_DEP)$(CC) -MM $(LOCAL_CFLAGS) $(SRC)/*.c | sed -e "s/\([A-Za-z0-9+-0._&+-]*:\)/\$(OBJ)\/\1/g" > $(DEPEND)
-include $(DEPEND)
.PHONY: release
VERSION = $(subst /,_,$(file <VERSION))
TARFORMAT = tar.gz
TARBALL = $(NAME)_$(VERSION)-src.$(TARFORMAT)
TARPREFIX = $(NAME)-$(VERSION)/
.PRECIOUS: $(TARBALL)
release: $(TARBALL)
$(TARBALL): .FORCE po/devilspie2.pot
git verify-tag v$(VERSION)
git archive --format=$(TARFORMAT) --prefix=$(TARPREFIX) -o $@ v$(VERSION)
po/devilspie2.pot:
make -C po update-pot
.FORCE: