summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Gui/Makefile6
-rw-r--r--libmpdvdkit2/Makefile4
2 files changed, 3 insertions, 7 deletions
diff --git a/Gui/Makefile b/Gui/Makefile
index aa51628fd2..346be565ee 100644
--- a/Gui/Makefile
+++ b/Gui/Makefile
@@ -45,7 +45,7 @@ OBJS = $(SRCS:.c=.o)
### TARGETS ###
-$(LIBNAME): .depend $(OBJS)
+$(LIBNAME): $(OBJS)
rm -f $(LIBNAME)
$(AR) rc $(LIBNAME) $(OBJS) $(MPLAYEROBJS)
$(RANLIB) $(LIBNAME)
@@ -70,9 +70,7 @@ distclean: clean
dep: depend
-depend: .depend
-
-.depend: Makefile config.mak
+depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#
diff --git a/libmpdvdkit2/Makefile b/libmpdvdkit2/Makefile
index 2240ed7eb5..87a3239f41 100644
--- a/libmpdvdkit2/Makefile
+++ b/libmpdvdkit2/Makefile
@@ -65,9 +65,7 @@ distclean: clean
dep: depend
-depend: .depend
-
-.depend:
+depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#