Browse Source

Test programs depend on $(LIB).

Originally committed as revision 20059 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
tags/v0.5
Diego Biurrun 19 years ago
parent
commit
6a07717908
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libswscale/Makefile

+ 2
- 2
libswscale/Makefile View File

@@ -21,10 +21,10 @@ HEADERS = swscale.h rgb2rgb.h


include $(SRC_PATH)/common.mak include $(SRC_PATH)/common.mak


cs_test: cs_test.c
cs_test: cs_test.c $(LIB)
$(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS)


swscale-example: swscale-example.c
swscale-example: swscale-example.c $(LIB)
$(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS)


clean:: clean::


Loading…
Cancel
Save