]> granicus.if.org Git - libjpeg-turbo/commitdiff
Enable silent build rules for the NASM objects, if the source is configured with...
authorDRC <dcommander@users.sourceforge.net>
Mon, 23 Feb 2015 19:03:29 +0000 (19:03 +0000)
committerDRC <dcommander@users.sourceforge.net>
Mon, 23 Feb 2015 19:03:29 +0000 (19:03 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/libjpeg-turbo/code/branches/1.4.x@1534 632fc199-4ca6-4c93-a231-07263d6284db

simd/Makefile.am
simd/nasm_lt.sh

index 9605e68decd579b2af77395a3382c5c3e2f23b74..3029f1c9ac39ca43312bcc8d083423408647d600 100644 (file)
@@ -73,7 +73,7 @@ endif
 AM_CPPFLAGS = -I$(top_srcdir)
 
 .asm.lo:
-       $(LIBTOOL) --mode=compile --tag NASM $(srcdir)/nasm_lt.sh $(NASM) $(NAFLAGS) -I$(srcdir) -I. $< -o $@
+       $(AM_V_GEN) $(LIBTOOL) $(AM_V_lt) --mode=compile --tag NASM $(srcdir)/nasm_lt.sh $(AM_V_lt) $(NASM) $(NAFLAGS) -I$(srcdir) -I. $< -o $@
 
 jsimdcfg.inc: $(srcdir)/jsimdcfg.inc.h ../jpeglib.h ../jconfig.h ../jmorecfg.h
-       $(CPP) -I$(top_builddir) -I$(top_builddir)/simd $(srcdir)/jsimdcfg.inc.h | $(EGREP) "^[\;%]|^\ %" | sed 's%_cpp_protection_%%' | sed 's@% define@%define@g' > $@
+       $(AM_V_GEN) $(CPP) -I$(top_builddir) -I$(top_builddir)/simd $(srcdir)/jsimdcfg.inc.h | $(EGREP) "^[\;%]|^\ %" | sed 's%_cpp_protection_%%' | sed 's@% define@%define@g' > $@
index 6cd73294c0617c5d186926f1a7903afbde11044c..817be1612acb3378ba26b6c0919ced55bd261fef 100755 (executable)
@@ -5,6 +5,9 @@ o_opt=no
 pic=no
 while [ $# -gt 0 ]; do
     case "$1" in
+        --silent)
+            exec > /dev/null
+            ;;
         -DPIC|-fPIC|-fpic|-Kpic|-KPIC)
             if [ "$pic" != "yes" ] ; then
                 command="$command -DPIC"