mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-21 05:18:06 +01:00
Instead of using the --disable-verbose-compile hack, let's use the standard option --enable-silent-rules (or 'make V=0' directly) available with autoconf 1.11 and higher. This is enabled in autoconf by using 'silent-rules' in AM_INIT_AUTOMAKE. The verbosity of compilation is reduced in a similar manner as using the --disable-verbose-compile option, so we can remove all that ugly hackery.
18 lines
386 B
Makefile
18 lines
386 B
Makefile
|
|
defsdatadir = $(pkgdatadir)/IconSets
|
|
|
|
defsdata_DATA = Default.iconset
|
|
|
|
EXTRA_DIST =
|
|
|
|
CLEANFILES = Default.iconset
|
|
|
|
Default.iconset: $(top_builddir)/WindowMaker/Defaults/WMWindowAttributes
|
|
-rm -f Default.iconset
|
|
echo '{' > Default.iconset
|
|
grep Icon $(top_builddir)/WindowMaker/Defaults/WMWindowAttributes >> Default.iconset
|
|
echo '}' >> Default.iconset
|
|
chmod 644 Default.iconset
|
|
|
|
|