diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-04-22 20:16:29 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-04-22 20:16:29 +0000 |
commit | a1639b42de07e0f6df59f3dcc97e87e8a7ef836d (patch) | |
tree | 56b42a0eb29574476abc5eb306a0d6809b948c86 /libvo | |
parent | 7cc6f7384b88596e829f55de7c71508a3806b3e8 (diff) |
Readd an explicit rule for Objective C files. Apparently only Apple's fork of
GNU Make has an implicit rule for Objective C.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23085 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libvo/Makefile b/libvo/Makefile index 81f97fe57a..660880eac5 100644 --- a/libvo/Makefile +++ b/libvo/Makefile @@ -23,3 +23,6 @@ SRCS_COMMON-$(BITMAP_FONT) += font_load.c SRCS_COMMON-$(FREETYPE) += font_load_ft.c include ../mpcommon.mak + +%.o: %.m + $(CC) $(CFLAGS) -c -o $@ $< |