diff libvo/Makefile @ 1010:6d3a6d42c831

dependency stuff fixed
author arpi_esp
date Mon, 04 Jun 2001 19:33:28 +0000
parents 91087aaea5c7
children b36fb1ae4b53
line wrap: on
line diff
--- a/libvo/Makefile	Mon Jun 04 19:30:24 2001 +0000
+++ b/libvo/Makefile	Mon Jun 04 19:33:28 2001 +0000
@@ -16,7 +16,7 @@
 .c.o:
 	$(CC) -c $(CFLAGS) -o $@ $<
 
-$(LIBNAME):     .depend $(OBJS)
+$(LIBNAME):     $(OBJS)
 	$(AR) r $(LIBNAME) $(OBJS)
 
 all:    $(LIBNAME)
@@ -28,9 +28,8 @@
 	rm -f Makefile.bak *.o *.a *~ .depend
 
 dep:    depend
-depend: .depend
 
-.depend: Makefile config.mak ../config.mak ../config.h
+depend:
 	$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
 
 #