1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-29 19:22:48 +00:00

Make depend targets consistent: Remove redirection through .depend target.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18484 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-05-13 18:01:04 +00:00
parent 89f9113cd1
commit 8ef6dadf95
2 changed files with 3 additions and 7 deletions

View File

@ -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
#

View File

@ -65,9 +65,7 @@ distclean: clean
dep: depend
depend: .depend
.depend:
depend:
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
#