diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-05 17:11:05 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-05 17:11:05 +0000 |
commit | aae0bc19b1e259b15fe17609a50090ef035488d5 (patch) | |
tree | b7ca6162e6e786dfd36290f25fded2dbfcb020b0 | |
parent | c6c4651138107827b8ad700de2148037df640f38 (diff) | |
download | ffmpeg-aae0bc19b1e259b15fe17609a50090ef035488d5.tar.gz |
Simplify test program build.
Originally committed as revision 20073 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libswscale/Makefile b/libswscale/Makefile index b0b15d19c1..29abaeb0fc 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -22,10 +22,8 @@ HEADERS = swscale.h rgb2rgb.h include $(SRC_PATH)/common.mak cs_test: cs_test.c $(LIB) - $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) -swscale-example: swscale-example.c $(LIB) - $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) +swscale-example: swscale-example.o $(LIB) clean:: rm -f cs_test swscale-example |