Browse Source

fix make dep with some gcc versions

Originally committed as revision 6988 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Måns Rullgård 19 years ago
parent
commit
0032cac2c9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile

+ 1
- 1
Makefile View File

@@ -208,7 +208,7 @@ ifeq ($(CONFIG_VHOOK),yes)
endif

.depend: $(SRCS) version.h
$(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $^ 1>.depend
$(CC) -MM $(CFLAGS) $(SDL_CFLAGS) $(filter-out %.h,$^) 1>.depend

.libs: lib
@test -f .libs || touch .libs


Loading…
Cancel
Save