summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--libmpdemux/Makefile3
-rw-r--r--libvo/Makefile3
-rw-r--r--mpcommon.mak5
4 files changed, 0 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index 64c9dbcd67..3348f9273c 100644
--- a/Makefile
+++ b/Makefile
@@ -140,13 +140,8 @@ ALL_PRG += $(ALL_PRG-yes)
COMMON_LIBS += osdep/libosdep.a
-.SUFFIXES: .cc .c .o
-
all: $(ALL_PRG)
-.c.o:
- $(CC) -c $(CFLAGS) -o $@ $<
-
libaf/libaf.a:
$(MAKE) -C libaf
diff --git a/libmpdemux/Makefile b/libmpdemux/Makefile
index f073374cb5..066c97d8c6 100644
--- a/libmpdemux/Makefile
+++ b/libmpdemux/Makefile
@@ -76,7 +76,4 @@ CFLAGS-$(CONFIG_LIBAVFORMAT) += -I../libavformat
CXXFLAGS = $(CFLAGS) -D__STDC_LIMIT_MACROS
-.cpp.o:
- $(CC) -c $(CXXFLAGS) -o $@ $<
-
include ../mpcommon.mak
diff --git a/libvo/Makefile b/libvo/Makefile
index d5406846e1..866162b17c 100644
--- a/libvo/Makefile
+++ b/libvo/Makefile
@@ -30,6 +30,3 @@ CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil
CFLAGS = -I../osdep
include ../mpcommon.mak
-
-.m.o:
- $(CC) -c $(CFLAGS) -o $@ $<
diff --git a/mpcommon.mak b/mpcommon.mak
index 093855ef8f..e439eb26ad 100644
--- a/mpcommon.mak
+++ b/mpcommon.mak
@@ -7,11 +7,6 @@ OBJS2 = $(addsuffix .o, $(basename $(SRCS2)) )
CFLAGS += -I. -I.. $(OPTFLAGS)
-.SUFFIXES: .c .o
-
-.c.o:
- $(CC) -c $(CFLAGS) -o $@ $<
-
LIBS = $(LIBNAME) $(LIBNAME2)
all: $(LIBS)