* Makefile.common (%.o): further simplify, add "..." to make it

obvious it's an abbreviated command line.
This commit is contained in:
DJ Delorie 2000-05-24 18:54:10 +00:00
parent 56cd25ee02
commit 4b9f883e84
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2000-05-24 DJ Delorie <dj@cygnus.com>
* Makefile.common (%.o): further simplify, add "..." to make it
obvious it's an abbreviated command line.
Thu May 18 14:33:05 2000 Christopher Faylor <cgf@cygnus.com>
* MAINTAINERS: Add Corinna to general list.

View File

@ -103,16 +103,16 @@ endif
ifdef VERBOSE
$(COMPILE_CXX) -o $(@D)/$(*F)$o $<
else
@echo $(CC) $c $(CXXFLAGS) -o $(@D)/$(*F)$o ${subst $(srcdir)/,,$<}; \
$(COMPILE_CXX) -o $(@D)/$(*F)$o $<
@echo $(CC) $c $(CXXFLAGS) ... $(*F).cc
@$(COMPILE_CXX) -o $(@D)/$(*F)$o $<
endif
%.o: %.c
ifdef VERBOSE
$(COMPILE_CC) -o $(@D)/$(*F)$o $<
else
@echo $(CC) $c $(CFLAGS) -o $(@D)/$(*F)$o ${subst $(srcdir)/,,$<}; \
$(COMPILE_CC) -o $(@D)/$(*F)$o $<
@echo $(CC) $c $(CFLAGS) ... $(*F).c
@$(COMPILE_CC) -o $(@D)/$(*F)$o $<
endif
$(bupdir1)/libiberty/%.o: $(updir1)/libiberty/%.c