summaryrefslogtreecommitdiffstats
path: root/Gui/Makefile
diff options
context:
space:
mode:
authorpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-03 08:55:26 +0000
committerpontscho <pontscho@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-07-03 08:55:26 +0000
commit4e08b0025d49ffd3691d7c53efe7653d831ad478 (patch)
treed8ea7d73ef53e93695b5f22b88a05a10d67a5ece /Gui/Makefile
parent8d66c65188b36404533ffcbfbe76106d6680332b (diff)
downloadmpv-4e08b0025d49ffd3691d7c53efe7653d831ad478.tar.bz2
mpv-4e08b0025d49ffd3691d7c53efe7653d831ad478.tar.xz
remove unneded config files
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@6626 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/Makefile')
-rw-r--r--Gui/Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Gui/Makefile b/Gui/Makefile
index d15eb9e0b9..6a3309fd8e 100644
--- a/Gui/Makefile
+++ b/Gui/Makefile
@@ -4,10 +4,6 @@ LIB = libgui.a
include ../config.mak
include config.mak
-include bitmap/bitmap.mak
-MPLAYERDIR = mplayer/
-include gui.mak
-
INCDIR = -I. -I./event -I./wm -I./skin $(GTKINC) $(EXTRA_INC)
OPTIMIZE = $(OPTFLAGS) -fomit-frame-pointer \
@@ -18,6 +14,13 @@ endif
CFLAGS = $(OPTIMIZE) $(INCDIR) $(DEBUG)
+SRCS = wm/ws.c wm/wsconv.c app.c events.c interface.c \
+ bitmap/bitmap.c bitmap/tga/tga.c bitmap/bmp/bmp.c bitmap/png/png.c \
+ skin/skin.c skin/font.c skin/cut.c \
+ mplayer/mplayer.c mplayer/widgets.c mplayer/play.c \
+ mplayer/gtk/menu.c mplayer/gtk/mb.c mplayer/gtk/about.c mplayer/gtk/pl.c mplayer/gtk/sb.c mplayer/gtk/fs.c mplayer/gtk/opts.c mplayer/gtk/url.c mplayer/gtk/eq.c
+OBJS = $(SRCS:.c=.o)
+
.SUFFIXES: .c .o
.c.o:
@@ -26,14 +29,12 @@ CFLAGS = $(OPTIMIZE) $(INCDIR) $(DEBUG)
### TARGETS ###
$(LIB): .depend $(OBJS)
- $(MAKE) -C mplayer
rm -f $(LIB)
$(AR) rc $(LIB) $(OBJS) $(MPLAYEROBJS)
all: $(LIB)
clean:
- $(MAKE) -C mplayer clean
rm -rf $(OBJS) *.o *~ *.bak main $(PRG) $(LIB) .depend
#dep: depend
@@ -48,8 +49,7 @@ dep: depend
depend: .depend
-.depend: Makefile config.mak gui.mak bitmap/bitmap.mak
- $(MAKE) -C mplayer depend
+.depend: Makefile config.mak
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#