diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-09-22 23:59:32 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-09-22 23:59:32 -0700 |
commit | 3bcc18ca9968a33dbf3e8df920f08227f95d8a72 (patch) | |
tree | 63f5ce8097aa72ad7721a644c299c7447b56f767 | |
parent | 282060f633c1a0910522f64cf36222a27016bf77 (diff) |
Silence build of deftwmrc.c with AM_V_GEN
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-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 |