diff libaf/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 b15a8a2dca6f
line wrap: on
line diff
--- a/libaf/Makefile	Sun Nov 26 18:06:11 2006 +0000
+++ b/libaf/Makefile	Sun Nov 26 18:12:36 2006 +0000
@@ -40,36 +40,12 @@
 SRCS+=af_lavcresample.c
 endif
 
-OBJS=$(SRCS:.c=.o)
-
-CFLAGS  = -I. -I.. $(LIBAV_INC) $(OPTFLAGS) -D_GNU_SOURCE
+CFLAGS  = -I.. $(LIBAV_INC) -D_GNU_SOURCE
 
 ifeq ($(TARGET_OS),MINGW32)
 CFLAGS += -D_IO_H_
 endif
 
-.SUFFIXES: .c .o
-
-.c.o:
-	$(CC) -c $(CFLAGS) -o $@ $<
-
-$(LIBNAME):     $(OBJS) Makefile
-	$(AR) r $(LIBNAME) $(OBJS)
-	$(RANLIB) $(LIBNAME)
-
 $(OBJS):af.h control.h dsp.h filter.h window.h af_mp.h
 
-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