src/Makefile.am (raw)
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 |
# 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. SUBDIRS= FbTk DEFAULT_MENU=@DEFAULT_MENU@ DEFAULT_STYLE=$(pkgdatadir)/styles/Clean DEFAULT_KEYSFILE=@DEFAULT_KEYS@ DEFAULT_INITFILE=@DEFAULT_INIT@ AM_CPPFLAGS=@CPPFLAGS@ -I$(srcdir)/FbTk bin_PROGRAMS= fluxbox BUILT_SOURCES = defaults.hh CONFIG_CLEAN_FILES = defaults.hh defaults.hh: Makefile @( \ echo '// This file is generated from Makefile. Do not edit!'; \ echo '#define DEFAULTMENU "$(DEFAULT_MENU)"'; \ echo '#define DEFAULTSTYLE "$(DEFAULT_STYLE)"'; \ echo '#define DEFAULTKEYSFILE "$(DEFAULT_KEYSFILE)"'; \ echo '#define DEFAULT_INITFILE "$(DEFAULT_INITFILE)"'; \ echo 'const char* svnversion(void);' ) > defaults.hh defaults.cc: force @( \ echo 'const char* svnversion(void) {'; \ echo ' return "'`(svnversion . | sed "s/[^0-9].*//") 2> /dev/null`'";';\ echo '}' ) > defaults_tmp.cc @if ! cmp defaults_tmp.cc defaults.cc ; then cp defaults_tmp.cc defaults.cc; fi @rm defaults_tmp.cc force: ; # an extra dep for fluxbox fluxbox.$(OBJEXT): defaults.hh if NEWWMSPEC newwmspec_SOURCE= Ewmh.hh Ewmh.cc endif if GNOME gnome_SOURCE= Gnome.hh Gnome.cc endif if REMEMBER_SRC # For now we only want regexp if we have remember REMEMBER_SOURCE= Remember.hh Remember.cc \ RegExp.hh RegExp.cc ClientPattern.hh ClientPattern.cc endif if TOOLBAR_SRC TOOLBAR_SOURCE = Toolbar.hh Toolbar.cc \ ToolbarTheme.hh ToolbarTheme.cc ToolbarItem.hh ToolbarItem.cc \ ClockTool.hh ClockTool.cc \ WorkspaceNameTool.hh WorkspaceNameTool.cc WorkspaceNameTheme.hh \ IconbarTool.hh IconbarTool.cc IconbarTheme.hh IconbarTheme.cc \ ToolTheme.hh ToolTheme.cc \ IconButton.hh IconButton.cc \ SystemTray.hh SystemTray.cc \ GenericTool.hh GenericTool.cc \ ButtonTool.hh ButtonTool.cc ButtonTheme.hh ButtonTheme.cc \ ToolFactory.hh ToolFactory.cc endif fluxbox_SOURCES = AtomHandler.hh ArrowButton.hh ArrowButton.cc \ BoolMenuItem.hh \ FbAtoms.hh FbAtoms.cc FbWinFrame.hh FbWinFrame.cc \ FbWinFrameTheme.hh FbWinFrameTheme.cc \ fluxbox.cc fluxbox.hh \ Keys.cc Keys.hh main.cc \ Netizen.cc Netizen.hh \ RootTheme.hh RootTheme.cc \ FbRootWindow.hh FbRootWindow.cc \ Screen.cc Screen.hh ScreenResources.cc \ Slit.cc Slit.hh SlitTheme.hh SlitTheme.cc SlitClient.hh SlitClient.cc \ WinButton.hh WinButton.cc \ WinButtonTheme.hh WinButtonTheme.cc \ Window.cc Window.hh \ Workspace.cc Workspace.hh \ FbCommands.hh FbCommands.cc LayerMenu.hh LayerMenu.cc \ IntResMenuItem.hh IntResMenuItem.cc FbMenu.hh FbMenu.cc \ WinClient.hh WinClient.cc \ Strut.hh \ Xinerama.hh \ IconMenuItem.hh \ Xutil.hh Xutil.cc \ CurrentWindowCmd.hh CurrentWindowCmd.cc \ WorkspaceCmd.hh WorkspaceCmd.cc \ CommandParser.hh CommandParser.cc \ FbCommandFactory.hh FbCommandFactory.cc \ Shape.hh Shape.cc \ MenuTheme.hh MenuTheme.cc \ Container.hh Container.cc \ TextTheme.hh TextTheme.cc \ BorderTheme.hh BorderTheme.cc \ CommandDialog.hh CommandDialog.cc SendToMenu.hh SendToMenu.cc \ CompareWindow.hh \ Parser.hh Parser.cc FbMenuParser.hh FbMenuParser.cc \ StyleMenuItem.hh StyleMenuItem.cc \ RootCmdMenuItem.hh RootCmdMenuItem.cc\ MenuCreator.hh MenuCreator.cc \ IconMenu.hh IconMenu.cc \ WorkspaceMenu.hh WorkspaceMenu.cc \ FocusModelMenuItem.hh \ ToggleMenu.hh \ HeadArea.hh HeadArea.cc \ Resources.cc \ WindowCmd.hh WindowCmd.cc \ ${newwmspec_SOURCE} ${gnome_SOURCE} \ ${REMEMBER_SOURCE} ${TOOLBAR_SOURCE} LDADD=FbTk/libFbTk.a defaults.$(OBJEXT) |