Commit 1bc0c120 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

Makefile: remove echo action from all target

parent 5a8496df
......@@ -44,7 +44,6 @@ endif
.PHONY : all
all : $(LIBR)
@echo "make: built targets of `pwd`"
# update libmruby.a
$(LIBR) : $(MRBC) $(MLIB)
......
......@@ -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)
......
......@@ -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)
......
......@@ -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)
......
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment