diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-26 18:12:36 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-11-26 18:12:36 +0000 |
commit | dc2be42703cd95be495d420aeeaec79448222fa4 (patch) | |
tree | 02aa41ebcac77a378d93898cb064bf1c925545fe /tremor | |
parent | 7ecf9d9e29e9cb857bd7120cd5be3abb11f20151 (diff) |
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
Diffstat (limited to 'tremor')
-rw-r--r-- | tremor/Makefile | 30 |
1 files changed, 2 insertions, 28 deletions
diff --git a/tremor/Makefile b/tremor/Makefile index d898970175..a3574905d3 100644 --- a/tremor/Makefile +++ b/tremor/Makefile @@ -18,32 +18,6 @@ SRCS = bitwise.c \ synthesis.c \ window.c \ -OBJS = $(SRCS:.c=.o) -INCLUDE = -I. -I.. -CFLAGS = $(OPTFLAGS) $(INCLUDE) $(TREMOR_FLAGS) +CFLAGS = $(TREMOR_FLAGS) -.SUFFIXES: .c .o - -# .PHONY: all clean - -.c.o: - $(CC) -c $(CFLAGS) -o $@ $< - -$(LIBNAME): $(OBJS) - $(AR) r $(LIBNAME) $(OBJS) - $(RANLIB) $(LIBNAME) - -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 |