Mercurial > mplayer.hg
changeset 19049:c0d96b4ff0af
Simplify includes.
author | diego |
---|---|
date | Wed, 12 Jul 2006 23:50:29 +0000 |
parents | 236605d1ffb7 |
children | 9c5077988cb7 |
files | libmenu/Makefile |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/libmenu/Makefile Wed Jul 12 23:31:33 2006 +0000 +++ b/libmenu/Makefile Wed Jul 12 23:50:29 2006 +0000 @@ -19,13 +19,13 @@ endif OBJS=$(SRCS:.c=.o) -CFLAGS = $(OPTFLAGS) -I. -I.. -I../libmpcodecs +CFLAGS = $(OPTFLAGS) -I. -I.. -I../libmpcodecs $(FREETYPE_INC) .SUFFIXES: .c .o .c.o: - $(CC) -c $(CFLAGS) $(FREETYPE_INC) -o $@ $< + $(CC) -c $(CFLAGS) -o $@ $< $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) @@ -42,7 +42,7 @@ dep: depend depend: - $(CC) -MM $(CFLAGS) $(FREETYPE_INC) $(SRCS) 1>.depend + $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist