mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-24 07:02:30 +01:00
Also, the script is a one-liner, stolen from [1]: ack --print0 -l '[ \t]+$' | xargs -0 -n1 perl -pi -e 's/[ \t]+$//' [1] https://stackoverflow.com/questions/149057/how-to-remove-trailing-whitespace-of-all-files-recursively
15 lines
382 B
Makefile
15 lines
382 B
Makefile
|
|
defsdatadir = $(pkgdatadir)/IconSets
|
|
|
|
defsdata_DATA = Default.iconset
|
|
|
|
EXTRA_DIST =
|
|
|
|
CLEANFILES = Default.iconset
|
|
|
|
Default.iconset: $(top_builddir)/WindowMaker/Defaults/WMWindowAttributes
|
|
$(AM_V_GEN)echo '{' > Default.iconset ; \
|
|
grep Icon $(top_builddir)/WindowMaker/Defaults/WMWindowAttributes >> Default.iconset ; \
|
|
echo '}' >> Default.iconset ; \
|
|
chmod 644 Default.iconset
|