2001-12-11 20:47:02 +00:00
|
|
|
# Makefile.am for fluxbox
|
2003-01-09 18:40:34 +00:00
|
|
|
# Copyright (c) 2001 - 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net)
|
2001-12-11 20:47:02 +00:00
|
|
|
#
|
|
|
|
# src/Makefile.am for Blackbox 0.61.x - an X11 Window manager
|
2002-12-13 20:39:07 +00:00
|
|
|
# Copyright (c) 1997 - 2000 Brad Hughes (bhughes at tcac.net)
|
2001-12-11 20:47:02 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
2002-11-26 16:03:36 +00:00
|
|
|
SUBDIRS= FbTk
|
2001-12-11 20:47:02 +00:00
|
|
|
DEFAULT_MENU=$(pkgdatadir)/menu
|
|
|
|
DEFAULT_STYLE=$(pkgdatadir)/styles/Clean
|
|
|
|
DEFAULT_KEYSFILE=$(pkgdatadir)/keys
|
|
|
|
DEFAULT_INITFILE=
|
|
|
|
|
2002-10-15 09:48:16 +00:00
|
|
|
AM_CPPFLAGS= -Wall @CPPFLAGS@ \
|
2001-12-11 20:47:02 +00:00
|
|
|
-DLOCALEPATH=\"$(pkgdatadir)/nls\" \
|
|
|
|
-DDEFAULTMENU=\"$(DEFAULT_MENU)\" \
|
|
|
|
-DDEFAULTSTYLE=\"$(DEFAULT_STYLE)\" \
|
|
|
|
-DDEFAULTKEYSFILE=\"$(DEFAULT_KEYSFILE)\"\
|
2002-11-26 16:03:36 +00:00
|
|
|
-DDEFAULT_INITFILE=\"$(pkgdatadir)/init\"\
|
|
|
|
-IFbTk
|
2001-12-11 20:47:02 +00:00
|
|
|
|
|
|
|
bin_PROGRAMS= fluxbox
|
|
|
|
|
2002-11-26 16:03:36 +00:00
|
|
|
|
2002-10-25 21:07:56 +00:00
|
|
|
if NEWWMSPEC
|
|
|
|
newwmspec_SOURCE= Ewmh.hh Ewmh.cc
|
|
|
|
endif
|
|
|
|
if GNOME
|
|
|
|
gnome_SOURCE= Gnome.hh Gnome.cc
|
|
|
|
endif
|
2003-05-08 10:45:12 +00:00
|
|
|
if REMEMBER_SRC
|
|
|
|
REMEMBER_SOURCE= Remember.hh Remember.cc
|
2003-06-12 15:12:19 +00:00
|
|
|
# For now we only want regexp if we have remember
|
|
|
|
if REGEXP_SRC
|
|
|
|
REGEXP_SOURCE = RegExp.hh RegExp.cc ClientPattern.hh ClientPattern.cc
|
|
|
|
endif
|
2003-05-08 10:45:12 +00:00
|
|
|
endif
|
2002-10-15 09:48:16 +00:00
|
|
|
|
2003-04-25 11:25:03 +00:00
|
|
|
fluxbox_SOURCES = AtomHandler.hh ArrowButton.hh ArrowButton.cc \
|
2003-01-12 18:25:08 +00:00
|
|
|
BoolMenuItem.hh \
|
2003-05-18 21:57:41 +00:00
|
|
|
${newwmspec_SOURCE} \
|
2003-04-25 11:25:03 +00:00
|
|
|
FbAtoms.hh FbAtoms.cc FbWinFrame.hh FbWinFrame.cc \
|
|
|
|
FbWinFrameTheme.hh FbWinFrameTheme.cc \
|
2003-01-05 22:52:30 +00:00
|
|
|
fluxbox.cc fluxbox.hh ${gnome_SOURCE} \
|
2003-01-09 18:40:34 +00:00
|
|
|
IconBar.cc IconBar.hh \
|
2003-06-13 05:04:14 +00:00
|
|
|
I18n.cc I18n.hh \
|
2002-11-26 16:03:36 +00:00
|
|
|
Keys.cc Keys.hh main.cc \
|
2003-04-26 15:44:17 +00:00
|
|
|
Netizen.cc Netizen.hh \
|
2003-04-25 11:25:03 +00:00
|
|
|
RootTheme.hh RootTheme.cc \
|
2003-05-10 22:51:12 +00:00
|
|
|
FbRootWindow.hh FbRootWindow.cc \
|
2002-11-26 16:03:36 +00:00
|
|
|
Screen.cc Screen.hh \
|
2003-06-20 01:25:43 +00:00
|
|
|
Slit.cc Slit.hh SlitTheme.hh SlitClient.hh SlitClient.cc \
|
2003-04-14 15:01:55 +00:00
|
|
|
TextButton.hh TextButton.cc \
|
2003-01-09 22:04:30 +00:00
|
|
|
Toolbar.cc Toolbar.hh \
|
2003-03-03 21:53:01 +00:00
|
|
|
ToolbarHandler.cc ToolbarHandler.hh \
|
2003-02-15 01:24:04 +00:00
|
|
|
ToolbarTheme.hh ToolbarTheme.cc \
|
2003-04-26 18:27:56 +00:00
|
|
|
WinButton.hh WinButton.cc \
|
2003-04-28 22:39:12 +00:00
|
|
|
WinButtonTheme.hh WinButtonTheme.cc \
|
2003-04-26 18:27:56 +00:00
|
|
|
Window.cc Window.hh \
|
2003-01-12 18:25:08 +00:00
|
|
|
Workspace.cc Workspace.hh \
|
2003-05-18 21:57:41 +00:00
|
|
|
FbCommands.hh FbCommands.cc LayerMenu.hh \
|
2003-04-26 05:42:36 +00:00
|
|
|
IntResMenuItem.hh IntResMenuItem.cc FbMenu.hh \
|
|
|
|
WinClient.hh WinClient.cc \
|
2003-06-19 17:14:23 +00:00
|
|
|
Strut.hh \
|
2003-06-10 12:39:26 +00:00
|
|
|
Xinerama.hh \
|
2003-06-22 12:25:09 +00:00
|
|
|
Xutil.hh Xutil.cc \
|
2003-06-12 15:12:19 +00:00
|
|
|
${REMEMBER_SOURCE} ${REGEXP_SOURCE}
|
2003-05-08 10:45:12 +00:00
|
|
|
|
2003-04-25 11:25:03 +00:00
|
|
|
|
2002-11-26 23:40:35 +00:00
|
|
|
LDADD=FbTk/libFbTk.a
|