svn commit: lorikeet r135 - in trunk/heimdal/cf: .

metze at samba.org metze at samba.org
Thu Dec 2 13:43:08 GMT 2004


Author: metze
Date: 2004-12-02 13:43:04 +0000 (Thu, 02 Dec 2004)
New Revision: 135

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=lorikeet&rev=135

Log:
make the make output less verbose

does anyone knows how we can do this for the link rules
and the recursiv calls?

metze

Modified:
   trunk/heimdal/cf/Makefile.am.common


Changeset:
Modified: trunk/heimdal/cf/Makefile.am.common
===================================================================
--- trunk/heimdal/cf/Makefile.am.common	2004-12-02 13:40:43 UTC (rev 134)
+++ trunk/heimdal/cf/Makefile.am.common	2004-12-02 13:43:04 UTC (rev 135)
@@ -1,7 +1,21 @@
 # $Id: Makefile.am.common,v 1.41 2004/08/25 14:19:38 joda Exp $
 
-SUFFIXES = .et .h
+SUFFIXES = .o .obj .lo
 
+.c.o:
+	@echo Compile `pwd`$@
+	@$(COMPILE) -c $< >/dev/null
+
+.c.obj:
+	@echo Compile `pwd`$@
+	@$(COMPILE) -c `$(CYGPATH_W) '$<'` >/dev/null
+
+.c.lo:
+	@echo Compile `pwd`$@
+	@$(LTCOMPILE) -c -o $@ $< >/dev/null
+
+SUFFIXES += .et .h
+
 AM_CPPFLAGS = -I$(top_builddir)/include $(INCLUDES_roken)
 
 if do_roken_rename
@@ -122,13 +136,13 @@
 NROFF_MAN = groff -mandoc -Tascii
 #NROFF_MAN = nroff -man
 .1.cat1:
-	$(NROFF_MAN) $< > $@
+	@$(NROFF_MAN) $< > $@
 .3.cat3:
-	$(NROFF_MAN) $< > $@
+	@$(NROFF_MAN) $< > $@
 .5.cat5:
-	$(NROFF_MAN) $< > $@
+	@$(NROFF_MAN) $< > $@
 .8.cat8:
-	$(NROFF_MAN) $< > $@
+	@$(NROFF_MAN) $< > $@
 
 ## MAINTAINERCLEANFILES += 
 
@@ -193,9 +207,9 @@
 
 
 .et.h:
-	$(COMPILE_ET) $<
+	@$(COMPILE_ET) $<
 .et.c:
-	$(COMPILE_ET) $<
+	@$(COMPILE_ET) $<
 
 LIB_kafs = $(top_builddir)/lib/kafs/libkafs.la $(AIX_EXTRA_KAFS)
 



More information about the samba-cvs mailing list