fluxbox/src/Makefile.am

101 lines
3.5 KiB
Text
Raw Normal View History

2001-12-11 20:47:02 +00:00
# Makefile.am for fluxbox
# 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=
AM_CPPFLAGS= -Wall @CPPFLAGS@ -IFbTk
2001-12-11 20:47:02 +00:00
bin_PROGRAMS= fluxbox
BUILT_SOURCES = defaults.hh
defaults.hh: Makefile
echo '// This file is generated from makefile. Do not edit!' > defaults.hh
2003-06-30 20:37:44 +00:00
echo '#define DEFAULTMENU "$(DEFAULT_MENU)"' >> defaults.hh
echo '#define DEFAULTSTYLE "$(DEFAULT_STYLE)"' >> defaults.hh
echo '#define DEFAULTKEYSFILE "$(DEFAULT_KEYSFILE)"' >> defaults.hh
echo '#define DEFAULT_INITFILE "$(pkgdatadir)/init"' >> defaults.hh
echo '#define LOCALEPATH "$(pkgdatadir)/nls"' >> defaults.hh
2001-12-11 20:47:02 +00:00
# some extra deps for I18n and fluxbox
I18n.$(OBJEXT): defaults.hh
fluxbox.$(OBJEXT): defaults.hh
2002-11-26 16:03:36 +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
# 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
2003-06-25 13:07:34 +00:00
if TOOLBAR_SRC
TOOLBAR_SOURCE = Toolbar.hh Toolbar.cc ToolbarHandler.hh ToolbarHandler.cc ToolbarTheme.hh ToolbarTheme.cc IconBar.hh IconBar.cc
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 \
BoolMenuItem.hh \
2003-04-25 11:25:03 +00:00
FbAtoms.hh FbAtoms.cc FbWinFrame.hh FbWinFrame.cc \
FbWinFrameTheme.hh FbWinFrameTheme.cc \
fluxbox.cc fluxbox.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-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 \
Workspace.cc Workspace.hh \
FbCommands.hh FbCommands.cc LayerMenu.hh \
IntResMenuItem.hh IntResMenuItem.cc FbMenu.hh FbMenu.cc \
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-07-28 18:29:14 +00:00
IconMenuItem.hh \
2003-06-22 12:25:09 +00:00
Xutil.hh Xutil.cc \
2003-06-30 15:07:29 +00:00
CurrentWindowCmd.hh CurrentWindowCmd.cc \
WorkspaceCmd.hh WorkspaceCmd.cc \
CommandParser.hh CommandParser.cc \
FbCommandFactory.hh FbCommandFactory.cc \
Shape.hh Shape.cc \
MenuTheme.hh MenuTheme.cc \
${newwmspec_SOURCE} ${gnome_SOURCE} \
2003-06-25 13:07:34 +00:00
${REMEMBER_SOURCE} ${REGEXP_SOURCE} ${TOOLBAR_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