summaryrefslogtreecommitdiffstats
path: root/libmpeg2
diff options
context:
space:
mode:
Diffstat (limited to 'libmpeg2')
-rw-r--r--libmpeg2/Makefile30
1 files changed, 2 insertions, 28 deletions
diff --git a/libmpeg2/Makefile b/libmpeg2/Makefile
index 90cb9797b4..40bc6c635b 100644
--- a/libmpeg2/Makefile
+++ b/libmpeg2/Makefile
@@ -12,9 +12,7 @@ SRCS = alloc.c \
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 @@ ifeq ($(TARGET_ARCH_ALPHA),yes)
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