summaryrefslogtreecommitdiffstats
path: root/libmpeg2
diff options
context:
space:
mode:
authorarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-04 19:33:28 +0000
committerarpi_esp <arpi_esp@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-04 19:33:28 +0000
commitc2b7070033f690b12dd1adc81209fcdeb8bb21d3 (patch)
tree8af3cb78a6e2e107508777ec24f9467e562caaab /libmpeg2
parentb2b9d98b8f35204705c67c8ae3304d7461fe6b7e (diff)
downloadmpv-c2b7070033f690b12dd1adc81209fcdeb8bb21d3.tar.bz2
mpv-c2b7070033f690b12dd1adc81209fcdeb8bb21d3.tar.xz
dependency stuff fixed
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1011 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpeg2')
-rw-r--r--libmpeg2/Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/libmpeg2/Makefile b/libmpeg2/Makefile
index d6a7f1cfa7..8a6ecbd1a3 100644
--- a/libmpeg2/Makefile
+++ b/libmpeg2/Makefile
@@ -15,7 +15,7 @@ CFLAGS = $(OPTFLAGS) $(INCLUDE) -DMPG12PLAY
.c.o:
$(CC) -c $(CFLAGS) -o $@ $<
-$(LIBNAME): .depend $(OBJS)
+$(LIBNAME): $(OBJS)
$(AR) r $(LIBNAME) $(OBJS)
all: $(LIBNAME)
@@ -27,9 +27,8 @@ distclean:
rm -f Makefile.bak *.o *.a *~ .depend
dep: depend
-depend: .depend
-.depend: Makefile ../config.mak ../config.h
+depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#