diff options
-rw-r--r-- | src/Makefile.am | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index decc79e..cb6f615 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -71,14 +71,14 @@ MAINTAINERCLEANFILES = $(BUILT_SOURCES) gram.h: gram.c deftwmrc.c: system.twmrc - rm -f $@ - echo '/* ' >>$@ - echo ' * This file is generated automatically from the default' >>$@ - echo ' * twm bindings file system.twmrc by the twm Imakefile.' >>$@ - echo ' */' >>$@ - echo '' >>$@ - echo 'unsigned char *defTwmrc[] = {' >>$@ - sed -f ${srcdir}/deftwmrc.sed < ${srcdir}/system.twmrc >>$@ + $(AM_V_GEN)rm -f $@ ; \ + echo '/* ' >>$@ ; \ + echo ' * This file is generated automatically from the default' >>$@ ; \ + echo ' * twm bindings file system.twmrc by the twm Makefile.' >>$@ ; \ + echo ' */' >>$@ ; \ + echo '' >>$@ ; \ + echo 'unsigned char *defTwmrc[] = {' >>$@ ; \ + sed -f ${srcdir}/deftwmrc.sed < ${srcdir}/system.twmrc >>$@ ; \ echo ' (unsigned char *) 0 };' >>$@ EXTRA_DIST = deftwmrc.sed siconify.bm |