summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-26 18:12:36 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-11-26 18:12:36 +0000
commitdc2be42703cd95be495d420aeeaec79448222fa4 (patch)
tree02aa41ebcac77a378d93898cb064bf1c925545fe /Gui
parent7ecf9d9e29e9cb857bd7120cd5be3abb11f20151 (diff)
downloadmpv-dc2be42703cd95be495d420aeeaec79448222fa4.tar.bz2
mpv-dc2be42703cd95be495d420aeeaec79448222fa4.tar.xz
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 'Gui')
-rw-r--r--Gui/Makefile28
1 files changed, 3 insertions, 25 deletions
diff --git a/Gui/Makefile b/Gui/Makefile
index e547c1f88f..7f0a38a145 100644
--- a/Gui/Makefile
+++ b/Gui/Makefile
@@ -44,34 +44,12 @@ SRCS = wm/ws.c \
mplayer/gtk/common.c \
endif
-OBJS = $(SRCS:.c=.o)
-.SUFFIXES: .c .o
+include ../mpcommon.mak
-.c.o:
- $(CC) -c $(CFLAGS) -o $@ $<
-
-$(LIBNAME): $(OBJS)
- rm -f $(LIBNAME)
- $(AR) rc $(LIBNAME) $(OBJS)
- $(RANLIB) $(LIBNAME)
-
-all: $(LIBNAME)
-
-clean:
- rm -f *.o *.a *~ \
- mplayer/*.o mplayer/*~ \
+clean::
+ rm -f mplayer/*.o mplayer/*~ \
mplayer/gtk/*.o mplayer/gtk/*~ \
skin/*.o skin/*~ \
wm/*.o wm/*~ \
win32/*.o win32/*~ \
-
-distclean: clean
- rm -f .depend
-
-dep depend:
- $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
-
-ifneq ($(wildcard .depend),)
-include .depend
-endif