# HG changeset patch # User diego # Date 1177272989 0 # Node ID 3c89c681e0d6d6f2c9c348324f46471ce7b2a494 # Parent 9fa58c749c03c0ac41d01afa431280b358580897 Readd an explicit rule for Objective C files. Apparently only Apple's fork of GNU Make has an implicit rule for Objective C. diff -r 9fa58c749c03 -r 3c89c681e0d6 libvo/Makefile --- a/libvo/Makefile Sun Apr 22 20:03:09 2007 +0000 +++ b/libvo/Makefile Sun Apr 22 20:16:29 2007 +0000 @@ -23,3 +23,6 @@ SRCS_COMMON-$(FREETYPE) += font_load_ft.c include ../mpcommon.mak + +%.o: %.m + $(CC) $(CFLAGS) -c -o $@ $<