aboutsummaryrefslogtreecommitdiff
path: root/src/Makemodule.am
blob: 0156c90d9979ac35585681fc08b3cfc5c5234d14 (plain)
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# Makefile.am for fluxbox
# Copyright (c) 2001 - 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net)
#
# src/Makefile.am for Blackbox 0.61.x  - an X11 Window manager
# Copyright (c) 1997 - 2000 Brad Hughes (bhughes at tcac.net)
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.

BUILT_SOURCES = src/defaults.hh src/defaults.cc
CONFIG_CLEAN_FILES = src/defaults.hh src/defaults.cc

LDADD = libFbTk.a src/defaults.$(OBJEXT)

bin_PROGRAMS += fluxbox

src/defaults.hh:
	@( \
		echo '// This file is generated from Makefile. Do not edit!'; \
		echo '#include <string>'; \
		echo ''; \
		echo '#ifdef _WIN32'; \
		echo '#define DUMMYPREFIX "/DUMMYPREFIX"'; \
		echo '#define PATHPREFIX DUMMYPREFIX'; \
		echo '#else'; \
		echo '#define PATHPREFIX'; \
		echo '#endif'; \
		echo '#define CONFIG_VERSION 13'; \
		echo '#define DEFAULTMENU PATHPREFIX "$(DEFAULT_MENU)"'; \
		echo '#define DEFAULTSTYLE PATHPREFIX "$(DEFAULT_STYLE)"'; \
		echo '#define DEFAULTKEYSFILE PATHPREFIX "$(DEFAULT_KEYSFILE)"'; \
		echo '#define DEFAULT_APPSFILE PATHPREFIX "$(DEFAULT_APPSFILE)"'; \
		echo '#define DEFAULT_OVERLAY PATHPREFIX "$(DEFAULT_OVERLAY)"'; \
		echo '#define DEFAULT_INITFILE PATHPREFIX "$(DEFAULT_INITFILE)"'; \
		echo '#define DEFAULT_WINDOWMENU PATHPREFIX "$(DEFAULT_WINDOWMENU)"'; \
		echo '#define PROGRAM_PREFIX "$(PROGRAM_PREFIX:NONE=)"'; \
		echo '#define PROGRAM_SUFFIX "$(PROGRAM_SUFFIX:NONE=)"'; \
		echo 'std::string realProgramName(const std::string& name);'; \
		echo 'const char* gitrevision();' ) > $(top_builddir)/src/defaults.hh

src/defaults.cc: force
	@( \
		GITDIR=$(top_srcdir)/.git; \
		echo '// This file is generated from Makefile. Do not edit!'; \
		echo '#include "defaults.hh"'; \
		echo ''; \
		echo 'std::string realProgramName(const std::string& name) {'; \
		echo '  return PROGRAM_PREFIX + name + PROGRAM_SUFFIX;'; \
		echo '}'; \
		echo ''; \
		echo 'const char* gitrevision() {'; \
		if test -r $$GITDIR/HEAD; then \
			echo '  return "'`cd $$GITDIR && git rev-parse HEAD`'";'; \
		else \
			echo '  return "unknown";'; \
		fi; \
		echo '}' ) > $(top_builddir)/src/defaults_tmp.cc
	@if ! cmp $(top_builddir)/src/defaults_tmp.cc $(top_builddir)/src/defaults.cc ; then cp $(top_builddir)/src/defaults_tmp.cc $(top_builddir)/src/defaults.cc; fi
	@rm $(top_builddir)/src/defaults_tmp.cc

force: ;

# an extra dep for fluxbox
fluxbox.$(OBJEXT): src/defaults.hh

if EWMH
EWMH_SOURCE = \
	src/Ewmh.hh \
	src/Ewmh.cc
endif

if REMEMBER_SRC
REMEMBER_SOURCE = \
	src/Remember.hh \
	src/Remember.cc
endif

if TOOLBAR_SRC
TOOLBAR_SOURCE = \
	src/ButtonTheme.cc \
	src/ButtonTheme.hh \
	src/ButtonTool.cc \
	src/ButtonTool.hh \
	src/ClockTool.cc \
	src/ClockTool.hh \
	src/GenericTool.cc \
	src/GenericTool.hh \
	src/IconbarTool.cc \
	src/IconbarTool.hh \
	src/SpacerTool.cc \
	src/SpacerTool.hh \
	src/ToolFactory.cc \
	src/ToolFactory.hh \
	src/ToolTheme.cc \
	src/ToolTheme.hh \
	src/Toolbar.cc \
	src/Toolbar.hh \
	src/ToolbarItem.cc \
	src/ToolbarItem.hh \
	src/ToolbarTheme.cc \
	src/ToolbarTheme.hh \
	src/WorkspaceNameTheme.hh \
	src/WorkspaceNameTool.cc \
	src/WorkspaceNameTool.hh
if SYSTRAY_SRC
TOOLBAR_SOURCE += \
	src/SystemTray.cc \
	src/SystemTray.hh
endif
endif

if SLIT_SRC
SLIT_SOURCE = \
	src/Slit.cc \
	src/Slit.hh \
	src/SlitClient.cc \
	src/SlitClient.hh \
	src/SlitTheme.cc \
	src/SlitTheme.hh
endif

fluxbox_CPPFLAGS = \
	$(FRIBIDI_CFLAGS) \
	$(XRANDR_CFLAGS) \
	$(AM_CPPFLAGS) \
	-I$(src_incdir) \
	-I$(fbtk_incdir) \
	-I$(nls_incdir)

fluxbox_LDADD = \
	$(LDADD) \
	$(FONTCONFIG_LIBS) \
	$(FREETYPE2_LIBS) \
	$(FRIBIDI_LIBS) \
	$(IMLIB2_LIBS) \
	$(RANDR_LIBS) \
	$(XEXT_LIBS) \
	$(XFT_LIBS) \
	$(XINERAMA_LIBS) \
	$(XPM_LIBS) \
	$(XRENDER_LIBS)

fluxbox_SOURCES = \
	src/AlphaMenu.cc \
	src/AlphaMenu.hh \
	src/ArrowButton.cc \
	src/ArrowButton.hh \
	src/AtomHandler.hh \
	src/AttentionNoticeHandler.cc \
	src/AttentionNoticeHandler.hh \
	src/CascadePlacement.cc \
	src/CascadePlacement.hh \
	src/ClientMenu.cc \
	src/ClientMenu.hh \
	src/ClientPattern.cc \
	src/ClientPattern.hh \
	src/ColSmartPlacement.cc \
	src/ColSmartPlacement.hh \
	src/CommandDialog.cc \
	src/CommandDialog.hh \
	src/ConfigMenu.hh \
	src/ConfigMenu.cc \
	src/CurrentWindowCmd.cc \
	src/CurrentWindowCmd.hh \
	src/Debug.hh \
	src/FbAtoms.cc \
	src/FbAtoms.hh \
	src/FbCommands.cc \
	src/FbCommands.hh \
	src/FbMenu.cc \
	src/FbMenu.hh \
	src/FbMenuParser.cc \
	src/FbMenuParser.hh \
	src/FbRootWindow.cc \
	src/FbRootWindow.hh \
	src/FbWinFrame.cc \
	src/FbWinFrame.hh \
	src/FbWinFrameTheme.cc \
	src/FbWinFrameTheme.hh \
	src/FocusControl.cc \
	src/FocusControl.hh \
	src/FocusModelMenuItem.hh \
	src/Focusable.hh \
	src/FocusableList.cc \
	src/FocusableList.hh \
	src/FocusableTheme.hh \
	src/HeadArea.cc \
	src/HeadArea.hh \
	src/IconButton.cc \
	src/IconButton.hh \
	src/IconbarTheme.cc \
	src/IconbarTheme.hh \
	src/Keys.cc \
	src/Keys.hh \
	src/Layer.hh \
	src/LayerMenu.cc \
	src/LayerMenu.hh \
	src/MenuCreator.cc \
	src/MenuCreator.hh \
	src/MinOverlapPlacement.cc \
	src/MinOverlapPlacement.hh \
	src/OSDWindow.cc \
	src/OSDWindow.hh \
	src/PlacementStrategy.hh \
	src/RectangleUtil.hh \
	src/Resources.cc \
	src/RootCmdMenuItem.cc\
	src/RootCmdMenuItem.hh \
	src/RootTheme.cc \
	src/RootTheme.hh \
	src/RowSmartPlacement.cc \
	src/RowSmartPlacement.hh \
	src/Screen.cc \
	src/Screen.hh \
	src/ScreenPlacement.cc \
	src/ScreenPlacement.hh \
	src/ScreenResource.cc \
	src/ScreenResource.hh \
	src/SendToMenu.cc \
	src/SendToMenu.hh \
	src/Strut.hh \
	src/StyleMenuItem.cc \
	src/StyleMenuItem.hh \
	src/TextDialog.cc \
	src/TextDialog.hh \
	src/ToggleMenu.hh \
	src/TooltipWindow.cc \
	src/TooltipWindow.hh \
	src/UnderMousePlacement.cc \
	src/UnderMousePlacement.hh \
	src/WinButton.cc \
	src/WinButton.hh \
	src/WinButtonTheme.cc \
	src/WinButtonTheme.hh \
	src/WinClient.cc \
	src/WinClient.hh \
	src/Window.cc \
	src/Window.hh \
	src/WindowCmd.cc \
	src/WindowCmd.hh \
	src/WindowMenuAccessor.hh \
	src/WindowState.cc \
	src/WindowState.hh\
	src/Workspace.cc \
	src/Workspace.hh \
	src/WorkspaceCmd.cc \
	src/WorkspaceCmd.hh \
	src/WorkspaceMenu.cc \
	src/WorkspaceMenu.hh \
	src/Xinerama.hh \
	src/Xutil.cc \
	src/Xutil.hh \
	src/fluxbox.cc \
	src/fluxbox.hh \
	src/main.cc \
	src/cli.hh \
	src/cli_cfiles.cc \
	src/cli_options.cc \
	src/cli_info.cc \
	${EWMH_SOURCE} \
	${REMEMBER_SOURCE} \
	${SLIT_SOURCE} \
	${TOOLBAR_SOURCE}