Mercurial > mplayer.hg
comparison libswscale/Makefile @ 20053:63979c96cca5
Test programs depend on $(LIB).
author | diego |
---|---|
date | Thu, 05 Oct 2006 00:57:48 +0000 |
parents | 4b066db32976 |
children | c13f577b8cf8 |
comparison
equal
deleted
inserted
replaced
20052:33c40d61bf33 | 20053:63979c96cca5 |
---|---|
19 | 19 |
20 HEADERS = swscale.h rgb2rgb.h | 20 HEADERS = swscale.h rgb2rgb.h |
21 | 21 |
22 include $(SRC_PATH)/common.mak | 22 include $(SRC_PATH)/common.mak |
23 | 23 |
24 cs_test: cs_test.c | 24 cs_test: cs_test.c $(LIB) |
25 $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) | 25 $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) |
26 | 26 |
27 swscale-example: swscale-example.c | 27 swscale-example: swscale-example.c $(LIB) |
28 $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) | 28 $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) |
29 | 29 |
30 clean:: | 30 clean:: |
31 rm -f cs_test swscale-example | 31 rm -f cs_test swscale-example |