From: diego Date: Sun, 26 Nov 2006 18:12:36 +0000 (+0000) Subject: Merge common parts of all Makefiles into one file included by all. X-Git-Tag: 0.9.7~382 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d0153ac6134272ee642dc7157aef71344b4492b;p=libass 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 --- diff --git a/libass/Makefile b/libass/Makefile index 9e2fde8..9a7ddde 100644 --- a/libass/Makefile +++ b/libass/Makefile @@ -12,36 +12,6 @@ SRCS = ass.c \ ass_bitmap.c \ ass_library.c \ -OBJS=$(SRCS:.c=.o) - -CFLAGS = -I. -I.. \ - -I../libmpcodecs \ - $(OPTFLAGS) \ - -D_GNU_SOURCE \ - -.SUFFIXES: .c .o - -# .PHONY: all clean - -.c.o: - $(CC) -c $(CFLAGS) -o $@ $< - -all: $(LIBNAME) - -$(LIBNAME): $(OBJS) - $(AR) r $(LIBNAME) $(OBJS) - $(RANLIB) $(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 +CFLAGS = -I../libmpcodecs -D_GNU_SOURCE +include ../mpcommon.mak