mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
Compile all binaries with default CFLAGS.
Originally committed as revision 9270 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
226cbe07c7
commit
18caf192e7
4
Makefile
4
Makefile
@ -84,13 +84,13 @@ version.h:
|
||||
$(SRC_PATH)/version.sh $(SRC_PATH)
|
||||
|
||||
output_example$(EXESUF): output_example.o .libs
|
||||
$(CC) $(LDFLAGS) -o $@ $< $(EXTRALIBS)
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< $(EXTRALIBS)
|
||||
|
||||
qt-faststart$(EXESUF): qt-faststart.c
|
||||
$(CC) $(CFLAGS) $< -o $@
|
||||
|
||||
cws2fws$(EXESUF): cws2fws.c
|
||||
$(CC) $< -o $@ -lz
|
||||
$(CC) $(CFLAGS) $< -o $@ -lz
|
||||
|
||||
ffplay.o: ffplay.c
|
||||
$(CC) $(CFLAGS) $(SDL_CFLAGS) -c -o $@ $<
|
||||
|
Loading…
Reference in New Issue
Block a user