diff libmpeg2/Makefile @ 21259:92b122592776

Merge common parts of all Makefiles into one file included by all.
author diego
date Sun, 26 Nov 2006 18:12:36 +0000
parents 68df3b19a160
children ef59ac68c9b6
line wrap: on
line diff
--- a/libmpeg2/Makefile	Sun Nov 26 18:06:11 2006 +0000
+++ b/libmpeg2/Makefile	Sun Nov 26 18:12:36 2006 +0000
@@ -12,9 +12,7 @@
 	  motion_comp.c \
 	  slice.c \
 
-OBJS	= $(SRCS:.c=.o)
-INCLUDE = -I. -I../libvo -I..
-CFLAGS  = $(INCLUDE) $(OPTFLAGS) -DMPG12PLAY
+CFLAGS = -I../libvo -DMPG12PLAY
 
 ifeq ($(TARGET_MMX),yes)
 SRCS += idct_mmx.c motion_comp_mmx.c
@@ -32,28 +30,4 @@
 SRCS += idct_alpha.c motion_comp_alpha.c
 endif
 
-.SUFFIXES: .c .o
-
-# .PHONY: all clean
-
-.c.o:
-	$(CC) -c $(CFLAGS) -o $@ $<
-
-$(LIBNAME):	$(OBJS)
-	$(AR) r $(LIBNAME) $(OBJS)
-	$(RANLIB) $(LIBNAME)
-
-all:	$(LIBNAME)
-
-clean:
-	rm -f *.o *.a *~
-
-distclean: clean
-	rm -f .depend
-
-dep depend:
-	$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
-
-ifneq ($(wildcard .depend),)
-include .depend
-endif
+include ../mpcommon.mak