Mercurial > mplayer.hg
changeset 20032:cd9064593436
Simplify compilation call by using $(EXTRALIBS).
author | diego |
---|---|
date | Wed, 04 Oct 2006 13:56:24 +0000 |
parents | d7cf54666334 |
children | 5519d7c2a460 |
files | libswscale/Makefile |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/Makefile Wed Oct 04 13:54:56 2006 +0000 +++ b/libswscale/Makefile Wed Oct 04 13:56:24 2006 +0000 @@ -23,7 +23,7 @@ include $(SRC_PATH)/common.mak cs_test: cs_test.c - $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale -L$(SRC_PATH)/libavutil -lavutil -lm + $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS) swscale-example: swscale-example.c - $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale -L$(SRC_PATH)/libavutil -lavutil -lm + $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS)