annotate libswscale/Makefile @ 20066:4d1d50643826

Remove stray $ from sync tag.
author diego
date Thu, 05 Oct 2006 12:37:02 +0000
parents 63979c96cca5
children c13f577b8cf8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2 include ../config.mak
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
3
18989
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
4 NAME=swscale
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
5 ifeq ($(BUILD_SHARED),yes)
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
6 LIBVERSION=$(SWSVERSION)
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
7 LIBMAJOR=$(SWSMAJOR)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
8 endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
9
18989
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
10 # NOTE: -I.. is needed to include config.h
19420
4f71ed7cb512 Move all internal -I parameters to the front of CFLAGS to avoid using external
diego
parents: 19410
diff changeset
11 CFLAGS=-I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil $(OPTFLAGS) \
18989
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
12 -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
20051
4b066db32976 FFmpeg uses -D_ISOC9X_SOURCE and not -D_GNU_SOURCE in CFLAGS.
diego
parents: 20034
diff changeset
13 -D_ISOC9X_SOURCE
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
14
18989
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
15 OBJS= swscale.o rgb2rgb.o yuv2rgb.o
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
16 ifeq ($(TARGET_ALTIVEC),yes)
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
17 OBJS+= yuv2rgb_altivec.o
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
18 endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
19
18989
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
20 HEADERS = swscale.h rgb2rgb.h
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
21
f0e9de2b3780 make libswscale build system similar to the libav* one
lucabe
parents: 18861
diff changeset
22 include $(SRC_PATH)/common.mak
19470
b3939dba3c13 Allow to compile swscale tests
lucabe
parents: 19420
diff changeset
23
20053
63979c96cca5 Test programs depend on $(LIB).
diego
parents: 20051
diff changeset
24 cs_test: cs_test.c $(LIB)
20032
cd9064593436 Simplify compilation call by using $(EXTRALIBS).
diego
parents: 19470
diff changeset
25 $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS)
19470
b3939dba3c13 Allow to compile swscale tests
lucabe
parents: 19420
diff changeset
26
20053
63979c96cca5 Test programs depend on $(LIB).
diego
parents: 20051
diff changeset
27 swscale-example: swscale-example.c $(LIB)
20032
cd9064593436 Simplify compilation call by using $(EXTRALIBS).
diego
parents: 19470
diff changeset
28 $(CC) $(CFLAGS) -o $@ $^ -L. -lswscale $(EXTRALIBS)
20034
534282370162 Remove cs_test and swscale-example on clean.
diego
parents: 20033
diff changeset
29
534282370162 Remove cs_test and swscale-example on clean.
diego
parents: 20033
diff changeset
30 clean::
534282370162 Remove cs_test and swscale-example on clean.
diego
parents: 20033
diff changeset
31 rm -f cs_test swscale-example