From dc2be42703cd95be495d420aeeaec79448222fa4 Mon Sep 17 00:00:00 2001 From: diego Date: Sun, 26 Nov 2006 18:12:36 +0000 Subject: Merge common parts of all Makefiles into one file included by all. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21275 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmpcodecs/Makefile | 27 +++------------------------ 1 file changed, 3 insertions(+), 24 deletions(-) (limited to 'libmpcodecs') diff --git a/libmpcodecs/Makefile b/libmpcodecs/Makefile index a304ab7400..b4c4974af4 100644 --- a/libmpcodecs/Makefile +++ b/libmpcodecs/Makefile @@ -305,43 +305,22 @@ OBJS=$(SRCS:.c=.o) 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 - -- cgit v1.2.3