diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-05-13 18:01:04 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2006-05-13 18:01:04 +0000 |
commit | 8ef6dadf95cccfc070a25b52f378488ce63e4c43 (patch) | |
tree | a2b328d788629de48f7e943457e104657a25b309 /Gui/Makefile | |
parent | 89f9113cd179c10d30c23042c4d9b9a55d7210de (diff) |
Make depend targets consistent: Remove redirection through .depend target.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18484 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'Gui/Makefile')
-rw-r--r-- | Gui/Makefile | 6 |
1 files changed, 2 insertions, 4 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 # |