diff libmpcodecs/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 e57ac78dc8e7
children 45cdeb103b6f
line wrap: on
line diff
--- a/libmpcodecs/Makefile	Sun Nov 26 18:06:11 2006 +0000
+++ b/libmpcodecs/Makefile	Sun Nov 26 18:12:36 2006 +0000
@@ -305,43 +305,22 @@
 SRCS2=$(ENCODER_SRCS)
 OBJS2=$(SRCS2:.c=.o)
 
-CFLAGS  = -I. -I.. \
+CFLAGS  = -I.. \
           -Inative \
           -I../libmpdemux \
           -I../stream \
           -I../loader \
           $(LIBAV_INC) \
-          $(OPTFLAGS) \
           -D_GNU_SOURCE \
 
-.SUFFIXES: .c .o
-
-# .PHONY: all clean
-
-.c.o:
-	$(CC) -c $(CFLAGS) -o $@ $<
+include ../mpcommon.mak
 
 all:    $(LIBS)
 
-$(LIBNAME): $(OBJS)
-	$(AR) r $@ $^
-	$(RANLIB) $@
-
 $(LIBNAME2): $(OBJS2)
 	$(AR) r $@ $^
 	$(RANLIB) $@
 
-clean:
-	rm -f *.o *.a *~
+clean::
 	rm -f native/*.o native/*.a native/*~
 
-distclean: clean
-	rm -f .depend
-
-dep depend:
-	$(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend
-
-ifneq ($(wildcard .depend),)
-include .depend
-endif
-