[MPlayer-cvslog] r19054 - trunk/libmenu/Makefile
diego
subversion at mplayerhq.hu
Thu Jul 13 01:50:29 CEST 2006
Author: diego
Date: Thu Jul 13 01:50:29 2006
New Revision: 19054
Modified:
trunk/libmenu/Makefile
Log:
Simplify includes.
Modified: trunk/libmenu/Makefile
==============================================================================
--- trunk/libmenu/Makefile (original)
+++ trunk/libmenu/Makefile Thu Jul 13 01:50:29 2006
@@ -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
More information about the MPlayer-cvslog
mailing list