Mercurial > mplayer.hg
view libswscale/Makefile @ 19800:dfb8d242987b
r19801: Mailing list page URL changed.
r19794: separate independant clauses with a semicolon, as suggested by The Wanderer
r19793: Fixes suggested by The Wanderer
r19779: RTC is no longer the default timing method.
r19767: Remove outdated hint about patching kernel sources.
r19760: remove trailing slash from link
r19752: Fixes suggested by Diego
r19751: Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it.
author | kraymer |
---|---|
date | Tue, 12 Sep 2006 08:28:48 +0000 |
parents | b3939dba3c13 |
children | cd9064593436 |
line wrap: on
line source
include ../config.mak NAME=swscale ifeq ($(BUILD_SHARED),yes) LIBVERSION=$(SWSVERSION) LIBMAJOR=$(SWSMAJOR) EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) endif # NOTE: -I.. is needed to include config.h CFLAGS=-I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil $(OPTFLAGS) \ -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \ -D_GNU_SOURCE OBJS= swscale.o rgb2rgb.o yuv2rgb.o ifeq ($(TARGET_ALTIVEC),yes) OBJS+= yuv2rgb_altivec.o endif HEADERS = swscale.h rgb2rgb.h include $(SRC_PATH)/common.mak cs_test: cs_test.c $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale -L$(SRC_PATH)/libavutil -lavutil -lm swscale-example: swscale-example.c $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale -L$(SRC_PATH)/libavutil -lavutil -lm