summaryrefslogtreecommitdiffstats
path: root/libswscale/Makefile
blob: ae667cb1119b74f852855c694df5971d48efde71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

include ../config.mak

NAME=swscale
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(SWSVERSION)
LIBMAJOR=$(SWSMAJOR)
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_ISOC9X_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 $(EXTRALIBS)

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

clean::
	rm -f cs_test swscale-example