diff libvo/Makefile @ 23067:3c89c681e0d6

Readd an explicit rule for Objective C files. Apparently only Apple's fork of GNU Make has an implicit rule for Objective C.
author diego
date Sun, 22 Apr 2007 20:16:29 +0000
parents 435648b07244
children 03107c6ea534
line wrap: on
line diff
--- 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 $@ $<