comparison libmpeg2/Makefile @ 19420:4f71ed7cb512

Move all internal -I parameters to the front of CFLAGS to avoid using external header files that happen to have the same name as internal ones. based on a patch by Vladislav Naumov, vladislav.naumov **at** gmail **dot** com
author diego
date Thu, 17 Aug 2006 17:19:56 +0000
parents 0945c6e242c6
children 618d1857f4c4
comparison
equal deleted inserted replaced
19419:3ae6b0a6fffc 19420:4f71ed7cb512
12 motion_comp.c \ 12 motion_comp.c \
13 slice.c \ 13 slice.c \
14 14
15 OBJS = $(SRCS:.c=.o) 15 OBJS = $(SRCS:.c=.o)
16 INCLUDE = -I. -I../libvo -I.. 16 INCLUDE = -I. -I../libvo -I..
17 CFLAGS = $(OPTFLAGS) $(INCLUDE) -DMPG12PLAY 17 CFLAGS = $(INCLUDE) $(OPTFLAGS) -DMPG12PLAY
18 18
19 ifeq ($(TARGET_MMX),yes) 19 ifeq ($(TARGET_MMX),yes)
20 SRCS += idct_mmx.c motion_comp_mmx.c 20 SRCS += idct_mmx.c motion_comp_mmx.c
21 endif 21 endif
22 22