summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libmenu/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmenu/Makefile b/libmenu/Makefile
index 8361bab4af..9353081346 100644
--- a/libmenu/Makefile
+++ b/libmenu/Makefile
@@ -19,13 +19,13 @@ EXTRA_INC += $(DVB_INC)
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 @@ distclean: clean
dep: depend
depend:
- $(CC) -MM $(CFLAGS) $(FREETYPE_INC) $(SRCS) 1>.depend
+ $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#
# include dependency files if they exist