mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-21 05:18:06 +01:00
A few files are generated using custom commands, which so far did not follow the silent rule as the compilation stuff. This patch adds the needed stuff so they will also be silent if the user wants so, leading to a cleaner build process where warning/error messages are more visible. Signed-off-by: Christophe CURIS <christophe.curis@free.fr>
28 lines
857 B
Makefile
28 lines
857 B
Makefile
|
|
defsdatadir = $(sysconfdir)/WindowMaker
|
|
|
|
defsdata_DATA = WMRootMenu WMWindowAttributes WindowMaker WMState WMGLOBAL
|
|
|
|
wpexecbindir = @wprefs_bindir@
|
|
|
|
EXTRA_DIST = WMGLOBAL WMWindowAttributes.in WindowMaker.in WMState.in
|
|
|
|
CLEANFILES = WMWindowAttributes WindowMaker WMState WMRootMenu
|
|
|
|
WMWindowAttributes: $(srcdir)/WMWindowAttributes.in
|
|
$(AM_V_GEN)sed -e "s:#extension#:@ICONEXT@:" \
|
|
$(srcdir)/WMWindowAttributes.in > WMWindowAttributes ; \
|
|
chmod 644 WMWindowAttributes
|
|
|
|
WindowMaker: $(srcdir)/WindowMaker.in
|
|
$(AM_V_GEN)sed -e "s:#pkgdatadir#:$(pkgdatadir):" $(srcdir)/WindowMaker.in \
|
|
> WindowMaker ; \
|
|
chmod 644 WindowMaker
|
|
|
|
WMState: $(srcdir)/WMState.in
|
|
$(AM_V_GEN)sed -e "s:#wprefs#:$(wpexecbindir)/WPrefs:" $(srcdir)/WMState.in > WMState ; \
|
|
chmod 644 WMState
|
|
|
|
WMRootMenu: $(srcdir)/../plmenu
|
|
$(AM_V_GEN)cp -f $(srcdir)/../plmenu WMRootMenu
|