diff loader/dshow/Makefile @ 1010:6d3a6d42c831

dependency stuff fixed
author arpi_esp
date Mon, 04 Jun 2001 19:33:28 +0000
parents 162a78d3cc08
children 6143de76e2e3
line wrap: on
line diff
--- a/loader/dshow/Makefile	Mon Jun 04 19:30:24 2001 +0000
+++ b/loader/dshow/Makefile	Mon Jun 04 19:33:28 2001 +0000
@@ -18,7 +18,7 @@
 .cpp.o:
 	$(CC) -c $(CFLAGS) -o $@ $<
 
-$(LIBNAME):	.depend $(OBJS)
+$(LIBNAME):	$(OBJS)
 	$(AR) r $(LIBNAME) $(OBJS)
 
 test:   test.c $(LIBNAME)
@@ -33,9 +33,8 @@
 	rm -f Makefile.bak *.o *.a *~ .depend test test.raw
 
 dep:    depend
-depend: .depend
 
-.depend: Makefile ../../config.mak
+depend:
 	$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
 
 #