comparison libass/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 1ea5c31932fd
children bcc792bfa431
comparison
equal deleted inserted replaced
19419:3ae6b0a6fffc 19420:4f71ed7cb512
7 7
8 SRCS=ass.c ass_cache.c ass_fontconfig.c ass_render.c ass_utils.c ass_mp.c 8 SRCS=ass.c ass_cache.c ass_fontconfig.c ass_render.c ass_utils.c ass_mp.c
9 9
10 OBJS=$(SRCS:.c=.o) 10 OBJS=$(SRCS:.c=.o)
11 11
12 CFLAGS = $(OPTFLAGS) \ 12 CFLAGS = -I. -I.. \
13 -I. -I.. \
14 -I../libmpcodecs \ 13 -I../libmpcodecs \
14 $(OPTFLAGS) \
15 -D_GNU_SOURCE \ 15 -D_GNU_SOURCE \
16 16
17 .SUFFIXES: .c .o 17 .SUFFIXES: .c .o
18 18
19 # .PHONY: all clean 19 # .PHONY: all clean