From: <sba...@us...> - 2015-06-17 21:22:34
|
Revision: 5305 http://sourceforge.net/p/fuse-emulator/code/5305 Author: sbaldovi Date: 2015-06-17 21:22:32 +0000 (Wed, 17 Jun 2015) Log Message: ----------- Enable silent rules for perl and windres commands. Modified Paths: -------------- trunk/libspectrum/Makefile.am trunk/libspectrum/hacking/ChangeLog trunk/libspectrum/test/Makefile.am Modified: trunk/libspectrum/Makefile.am =================================================================== --- trunk/libspectrum/Makefile.am 2015-06-16 22:15:43 UTC (rev 5304) +++ trunk/libspectrum/Makefile.am 2015-06-17 21:22:32 UTC (rev 5305) @@ -80,26 +80,26 @@ AM_CFLAGS = -DLIBSPECTRUM_EXPORTS make-perl$(EXEEXT): $(srcdir)/make-perl.c config.h - $(CC_FOR_BUILD) -I. $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $< + $(AM_V_CC)$(CC_FOR_BUILD) -I. $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ $< libspectrum.h: libspectrum.h.in generate.pl snap_accessors.txt tape_accessors.txt config.h - @PERL@ -p generate.pl $(srcdir) $(srcdir)/libspectrum.h.in > $@.tmp && mv $@.tmp $@ + $(AM_V_GEN)$(PERL) -p generate.pl $(srcdir) $(srcdir)/libspectrum.h.in > $@.tmp && mv $@.tmp $@ generate.pl: make-perl$(EXEEXT) generate.pl.in - ./make-perl$(EXEEXT) > $@ - cat $(srcdir)/generate.pl.in >> $@ + $(AM_V_GEN)./make-perl$(EXEEXT) > $@ + $(AM_V_at)cat $(srcdir)/generate.pl.in >> $@ snap_accessors.c: accessor.pl snap_accessors.txt - @PERL@ $(srcdir)/accessor.pl $(srcdir)/snap_accessors.txt > $@.tmp && mv $@.tmp $@ + $(AM_V_GEN)$(PERL) $(srcdir)/accessor.pl $(srcdir)/snap_accessors.txt > $@.tmp && mv $@.tmp $@ tape_accessors.c: tape_accessors.pl tape_accessors.txt - @PERL@ $(srcdir)/tape_accessors.pl $(srcdir)/tape_accessors.txt > $@.tmp && mv $@.tmp $@ + $(AM_V_GEN)$(PERL) $(srcdir)/tape_accessors.pl $(srcdir)/tape_accessors.txt > $@.tmp && mv $@.tmp $@ tape_set.c: tape_set.pl tape_accessors.txt - @PERL@ $(srcdir)/tape_set.pl $(srcdir)/tape_accessors.txt > $@.tmp && mv $@.tmp $@ + $(AM_V_GEN)$(PERL) $(srcdir)/tape_set.pl $(srcdir)/tape_accessors.txt > $@.tmp && mv $@.tmp $@ windres.o: windres.rc - @WINDRES@ -I. $(srcdir)/windres.rc windres.o + $(AM_V_GEN)$(WINDRES) -I. $(srcdir)/windres.rc windres.o AM_CPPFLAGS = @GLIB_CFLAGS@ @AUDIOFILE_CFLAGS@ Modified: trunk/libspectrum/hacking/ChangeLog =================================================================== --- trunk/libspectrum/hacking/ChangeLog 2015-06-16 22:15:43 UTC (rev 5304) +++ trunk/libspectrum/hacking/ChangeLog 2015-06-17 21:22:32 UTC (rev 5305) @@ -1015,5 +1015,7 @@ 20150513 internals.h: fix ARRAY_SIZE when using a modern GCC with strict C89 syntax (Sergio). 20150606 doc/libspectrum.txt: sync with snap_accessors.txt (Stuart). -20150613 m4/ax_create_stdint_h.m4: Add AX_CREATE_STDINT_H macro from the GNU +20150613 m4/ax_create_stdint_h.m4: add AX_CREATE_STDINT_H macro from the GNU Autoconf Archive (Stuart). +20150617 Makefile.am,test/Makefile.am: enable silent rules for perl and windres + commands (Sergio). Modified: trunk/libspectrum/test/Makefile.am =================================================================== --- trunk/libspectrum/test/Makefile.am 2015-06-16 22:15:43 UTC (rev 5304) +++ trunk/libspectrum/test/Makefile.am 2015-06-17 21:22:32 UTC (rev 5305) @@ -35,7 +35,7 @@ noinst_HEADERS += test/test.h test/complete-tzx.tzx: test/complete-tzx.pl - perl $< > $@.tmp && mv $@.tmp $@ + $(AM_V_GEN)$(PERL) $< > $@.tmp && mv $@.tmp $@ test_test_LDADD = libspectrum.la This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |