Browse Source

Remove .SECONDARY directive

The presence of the .SECONDARY directive caused thing to not always
be correctly rebuilt.  Mentioning the object files explicitly as
targets gives the desired result of make not deleting them without
unpleasant side-effects.

Originally committed as revision 22422 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Måns Rullgård 15 years ago
parent
commit
0680c40a25
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      common.mak

+ 1
- 1
common.mak View File

@@ -66,7 +66,7 @@ uninstall: uninstall-libs uninstall-headers
.SUFFIXES:

# Do not delete intermediate files from chains of implicit rules
.SECONDARY:
$(OBJS):
endif

OBJS-$(HAVE_MMX) += $(MMX-OBJS-yes)


Loading…
Cancel
Save