mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-19 12:28:22 +01:00
27 lines
759 B
Makefile
27 lines
759 B
Makefile
|
|
defsdatadir = $(sysconfdir)/WindowMaker
|
|
|
|
defsdata_DATA = WMRootMenu WMWindowAttributes WindowMaker WMState WMGLOBAL
|
|
|
|
EXTRA_DIST = WMRootMenu WMGLOBAL WMWindowAttributes.in WindowMaker.in WMState.in
|
|
|
|
CLEANFILES = WMWindowAttributes WindowMaker WMState
|
|
|
|
WMWindowAttributes: $(srcdir)/WMWindowAttributes.in
|
|
-rm -f WMWindowAttributes
|
|
sed -e "s:#extension#:@ICONEXT@:" \
|
|
$(srcdir)/WMWindowAttributes.in > WMWindowAttributes
|
|
chmod 644 WMWindowAttributes
|
|
|
|
WindowMaker: $(srcdir)/WindowMaker.in
|
|
-rm -f WindowMaker
|
|
sed -e "s:#pkgdatadir#:$(pkgdatadir):" $(srcdir)/WindowMaker.in \
|
|
> WindowMaker
|
|
chmod 644 WindowMaker
|
|
|
|
WMState: $(srcdir)/WMState.in
|
|
-rm -f WMState
|
|
sed -e "s:#wprefs#:$(wprefsdir)/WPrefs:" $(srcdir)/WMState.in > WMState
|
|
chmod 644 WMState
|
|
|