dslinux/toolchain/ndstool Makefile

stsp stsp at user.in-berlin.de
Mon Aug 14 12:12:48 CEST 2006


Update of /cvsroot/dslinux/dslinux/toolchain/ndstool
In directory antilope:/tmp/cvs-serv3940

Modified Files:
	Makefile 
Log Message:
Don't hide build commands.


Index: Makefile
===================================================================
RCS file: /cvsroot/dslinux/dslinux/toolchain/ndstool/Makefile,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile	13 Aug 2006 20:32:44 -0000	1.2
+++ Makefile	14 Aug 2006 10:12:46 -0000	1.3
@@ -117,12 +117,12 @@
 
 #---------------------------------------------------------------------------------
 $(BUILD):
-	@echo $(PATH)
-	@[ -d $@ ] || mkdir -p $@
-	@make PassMeIncludes
-	@cc -o raw2c raw2c.c
-	@make -C Loader CC=$(CROSS)gcc
-	@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
+	@echo PATH=$(PATH)
+	[ -d $@ ] || mkdir -p $@
+	make PassMeIncludes
+	cc -o raw2c raw2c.c
+	make -C Loader CC=$(CROSS)gcc
+	make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
 
 #---------------------------------------------------------------------------------
 .PHONY: PassMeIncludes
@@ -137,9 +137,9 @@
 #---------------------------------------------------------------------------------
 clean:
 	@echo clean ...
-	@make -C DefaultArm7 clean
-	@make -C Loader clean
-	@rm -fr $(BUILD) $(OUTPUT) raw2c
+	make -C DefaultArm7 clean
+	make -C Loader clean
+	rm -fr $(BUILD) $(OUTPUT) raw2c
 
 #---------------------------------------------------------------------------------
 all: clean $(BUILD)
@@ -161,7 +161,7 @@
 #---------------------------------------------------------------------------------
 $(OUTPUT): $(OFILES)
 	@echo linking
-	@$(LD) $(LDFLAGS) $(OFILES) $(LIBPATHS) $(LIBS) -o $(OUTPUT)$(EXEEXT)
+	$(LD) $(LDFLAGS) $(OFILES) $(LIBPATHS) $(LIBS) -o $(OUTPUT)$(EXEEXT)
 
 #---------------------------------------------------------------------------------
 # Compile Targets for C/C++
@@ -170,30 +170,30 @@
 #---------------------------------------------------------------------------------
 %.o : %.cpp
 	@echo $(notdir $<)
-	@$(CXX) -MMD $(CXXFLAGS) -o $@ -c $<
+	$(CXX) -MMD $(CXXFLAGS) -o $@ -c $<
 
 #---------------------------------------------------------------------------------
 %.o : %.c
 	@echo $(notdir $<)
-	@$(CC) -MMD $(CFLAGS) -o $@ -c $<
+	$(CC) -MMD $(CFLAGS) -o $@ -c $<
 
 #---------------------------------------------------------------------------------
 %.o : %.s
 	@echo $(notdir $<)
-	@$(CC) -MMD $(ASFLAGS) -o $@ -c $<
+	$(CC) -MMD $(ASFLAGS) -o $@ -c $<
 
 
 #---------------------------------------------------------------------------------
 %.c	:	%.bmp
 #---------------------------------------------------------------------------------
 	@echo $(notdir $<)
-	@$(NDSTOOL_SRCDIR)/raw2c $<
+	$(NDSTOOL_SRCDIR)/raw2c $<
  
 #---------------------------------------------------------------------------------
 %.c	:	%.bin
 #---------------------------------------------------------------------------------
 	@echo $(notdir $<)
-	@$(NDSTOOL_SRCDIR)/raw2c $<
+	$(NDSTOOL_SRCDIR)/raw2c $<
 
 -include $(DEPENDS)
 




More information about the dslinux-commit mailing list