diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-10-05 00:57:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-10-05 00:57:48 +0000 |
commit | 6a077179085c2dce7af420ffc384b87122da4a5c (patch) | |
tree | f2a358a685700b16a37a765fdec41189a12b1076 /libswscale | |
parent | 0ec92a15dd97891f644deef91d4d20ec4cbd0344 (diff) | |
download | ffmpeg-6a077179085c2dce7af420ffc384b87122da4a5c.tar.gz |
Test programs depend on $(LIB).
Originally committed as revision 20059 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/Makefile b/libswscale/Makefile index ae667cb111..b0b15d19c1 100644 --- a/libswscale/Makefile +++ b/libswscale/Makefile @@ -21,10 +21,10 @@ HEADERS = swscale.h rgb2rgb.h include $(SRC_PATH)/common.mak -cs_test: cs_test.c +cs_test: cs_test.c $(LIB) $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) -swscale-example: swscale-example.c +swscale-example: swscale-example.c $(LIB) $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) clean:: |