r1687 - in trunk

dslinux_dforsi at dslinux.in-berlin.de dslinux_dforsi at dslinux.in-berlin.de
Fri Jan 26 23:40:35 CET 2007


Author: dforsi
Date: 2007-01-26 23:40:30 +0100 (Fri, 26 Jan 2007)
New Revision: 1687

Log:
hide some "echo" commands during make (cosmetic change)

Modified: trunk/Makefile
===================================================================
--- trunk/Makefile	2007-01-24 21:48:16 UTC (rev 1686)
+++ trunk/Makefile	2007-01-26 22:40:30 UTC (rev 1687)
@@ -288,8 +288,8 @@
 
 .PHONY: subdirs
 subdirs: linux
-	echo "Build start unix"
-	echo $(BUILD_START_UNIX)
+	@echo "Build start unix"
+	@echo $(BUILD_START_UNIX)
 	for dir in $(DIRS) ; do [ ! -d $$dir ] || $(MAKEARCH_KERNEL) -C $$dir || exit 1 ; done
 
 dep:

Modified: trunk/uClibc/ldso/Makefile
===================================================================
--- trunk/uClibc/ldso/Makefile	2007-01-24 21:48:16 UTC (rev 1686)
+++ trunk/uClibc/ldso/Makefile	2007-01-26 22:40:30 UTC (rev 1687)
@@ -26,14 +26,14 @@
 ifeq ($(strip $(BUILD_UCLIBC_LDSO)),y)
 	$(MAKE) -C ldso;
 else
-	echo "Not building ld-uClibc"
+	@echo "Not building ld-uClibc"
 endif
 
 shared:
 ifeq ($(strip $(BUILD_UCLIBC_LDSO)),y)
 	$(MAKE) -C libdl;
 else
-	echo "Not building libdl"
+	@echo "Not building libdl"
 endif
 
 include/dl-progname.h: Makefile

Modified: trunk/user/microwin/src/Makefile.rules
===================================================================
--- trunk/user/microwin/src/Makefile.rules	2007-01-24 21:48:16 UTC (rev 1686)
+++ trunk/user/microwin/src/Makefile.rules	2007-01-26 22:40:30 UTC (rev 1687)
@@ -602,28 +602,28 @@
 # Compilation target for bmp file conversion
 #
 %.c:%.bmp $(TOP)/bin/convbmp
-	echo "Generating $@ from bitmap file ..."
+	@echo "Generating $@ from bitmap file ..."
 	$(TOP)/bin/convbmp -o $@ $<
 
 #
 # Compilation target for tool that does bmp file conversion
 #
 $(TOP)/bin/convbmp: $(TOP)/mwin/bmp/convbmp.c
-	echo "Building $@ tool ..."
+	@echo "Building $@ tool ..."
 	$(HOSTCC) $(HOSTCFLAGS) $< -o $@
 
 #
 # Compilation target for bdf font file conversion
 #
 %.c:%.bdf $(TOP)/bin/convbdf
-	echo "Generating $@ from font file ..."
+	@echo "Generating $@ from font file ..."
 	$(TOP)/bin/convbdf -c -o $@ $<
 
 #
 # Compilation target for tool that does bdf font file conversion
 #
 $(TOP)/bin/convbdf: $(TOP)/fonts/convbdf.c
-	echo "Building $@ tool ..."
+	@echo "Building $@ tool ..."
 	$(HOSTCC) $(HOSTCFLAGS) $< -o $@
 
 xconfig:
@@ -658,9 +658,9 @@
 
 install: default
 	$(INSTALL_DIR) $(HDRINSTALLDIR)
-	echo "Copying hdrs to $(HDRINSTALLDIR)"
+	@echo "Copying hdrs to $(HDRINSTALLDIR)"
 	$(INSTALL_HDR) include/*.h $(HDRINSTALLDIR)
-	echo "Copying libs to $(LIBINSTALLDIR)"
+	@echo "Copying libs to $(LIBINSTALLDIR)"
 	$(INSTALL_DIR) $(LIBINSTALLDIR)
 	$(INSTALL_LIB) lib/*.a $(LIBINSTALLDIR)
 ifeq ($(SHAREDLIBS), Y)
@@ -668,7 +668,7 @@
 endif
 ifeq ($(NANOX), Y)
 ifeq ($(LINK_APP_INTO_SERVER), N)
-	echo "Copying binaries to $(BININSTALLDIR)"
+	@echo "Copying binaries to $(BININSTALLDIR)"
 	$(INSTALL_DIR) $(BININSTALLDIR)
 	$(INSTALL_BIN) bin/nano-X $(BININSTALLDIR)
 else
@@ -677,7 +677,7 @@
 else
 	rm -f $(BININSTALLDIR)/nano-X
 endif
-	echo "Installation completed successfully."
+	@echo "Installation completed successfully."
 
 tags:
 	-rm -f TAGS




More information about the dslinux-commit mailing list