diff options
author | DJ Delorie <dj@redhat.com> | 2000-05-24 18:54:10 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2000-05-24 18:54:10 +0000 |
commit | 4b9f883e84172b0d36aec73c23c02dd7577949bd (patch) | |
tree | 46eb4afcd061a83105ecb727972d7b0b1673ce8f /winsup/Makefile.common | |
parent | 56cd25ee025db97fd3ba7052e07ec64ab2c3aae3 (diff) | |
download | cygnal-4b9f883e84172b0d36aec73c23c02dd7577949bd.tar.gz cygnal-4b9f883e84172b0d36aec73c23c02dd7577949bd.tar.bz2 cygnal-4b9f883e84172b0d36aec73c23c02dd7577949bd.zip |
* Makefile.common (%.o): further simplify, add "..." to make it
obvious it's an abbreviated command line.
Diffstat (limited to 'winsup/Makefile.common')
-rw-r--r-- | winsup/Makefile.common | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/winsup/Makefile.common b/winsup/Makefile.common index fe5076ba9..0778a7bd7 100644 --- a/winsup/Makefile.common +++ b/winsup/Makefile.common @@ -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 |