diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-05-15 16:40:45 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-05-15 16:40:45 +0900 |
| commit | 1bc0c12096ed667cd4bb9e5b9301f52c8b61cc02 (patch) | |
| tree | 56cf0995f3105b4ef9f5995ac64d3a0449e06ad5 | |
| parent | 5a8496df4a546dfca1d7c5c270366dca67b40c7c (diff) | |
| download | mruby-1bc0c12096ed667cd4bb9e5b9301f52c8b61cc02.tar.gz mruby-1bc0c12096ed667cd4bb9e5b9301f52c8b61cc02.zip | |
Makefile: remove echo action from all target
| -rw-r--r-- | mrblib/Makefile | 1 | ||||
| -rw-r--r-- | src/Makefile | 1 | ||||
| -rw-r--r-- | tools/mirb/Makefile | 1 | ||||
| -rw-r--r-- | tools/mrbc/Makefile | 1 | ||||
| -rw-r--r-- | tools/mruby/Makefile | 1 |
5 files changed, 0 insertions, 5 deletions
diff --git a/mrblib/Makefile b/mrblib/Makefile index ec4b5ec23..295082379 100644 --- a/mrblib/Makefile +++ b/mrblib/Makefile @@ -44,7 +44,6 @@ endif .PHONY : all all : $(LIBR) - @echo "make: built targets of `pwd`" # update libmruby.a $(LIBR) : $(MRBC) $(MLIB) diff --git a/src/Makefile b/src/Makefile index 11a00b41c..3fbcd25f5 100644 --- a/src/Makefile +++ b/src/Makefile @@ -36,7 +36,6 @@ ALL_CFLAGS = -Wall -Werror-implicit-function-declaration $(CFLAGS) .PHONY : all all : $(TARGET) - @echo "make: built targets of `pwd`" # executable constructed using linker from object files $(TARGET) : $(OBJS) $(OBJY) diff --git a/tools/mirb/Makefile b/tools/mirb/Makefile index 37086879d..4c6ab4e62 100644 --- a/tools/mirb/Makefile +++ b/tools/mirb/Makefile @@ -43,7 +43,6 @@ endif .PHONY : all all : $(LIBR) $(EXE) - @echo "make: built targets of `pwd`" # executable constructed using linker from object files $(EXE) : $(LIBR) $(OBJS) $(EXTS) diff --git a/tools/mrbc/Makefile b/tools/mrbc/Makefile index 1137baa03..1440f0e4d 100644 --- a/tools/mrbc/Makefile +++ b/tools/mrbc/Makefile @@ -44,7 +44,6 @@ endif .PHONY : all all : $(EXE) - @echo "make: built targets of `pwd`" # executable constructed using linker from object files $(EXE) : $(OBJS) $(LIBR) diff --git a/tools/mruby/Makefile b/tools/mruby/Makefile index 19140aabb..052aa93d6 100644 --- a/tools/mruby/Makefile +++ b/tools/mruby/Makefile @@ -47,7 +47,6 @@ endif .PHONY : all all : $(LIBR) $(EXE) - @echo "make: built targets of `pwd`" # executable constructed using linker from object files $(EXE) : $(LIBR) $(OBJS) $(EXTS) |
