* Makefile.common (%.o): further simplify, add "..." to make it
obvious it's an abbreviated command line.
This commit is contained in:
parent
56cd25ee02
commit
4b9f883e84
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue