]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Fixed trivial bug in naming of `depend' file. Argh.
authorMartin Mares <mj@ucw.cz>
Tue, 12 Jan 1999 20:36:18 +0000 (20:36 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 12 Jan 1999 20:36:18 +0000 (20:36 +0000)
tools/Rules.in

index 56c0903b6b4ad0a7cd238b6a8024d84a14174879..fed8ecbeceb2bfe3e8601367505663ddc03f2d76 100644 (file)
@@ -54,13 +54,13 @@ all.o: $(objs)
 endif
 
 %.o: $(src-path)%.c
-       $(CC) $(CFLAGS) -o $@ -c $^
+       $(CC) $(CFLAGS) -o $@ -c $<
 
 depend:
        gcc $(CPPFLAGS) -MM $(addprefix $(src-path),$(source)) >depend
 
-ifneq ($(wildcard .depend),)
-include .depend
+ifneq ($(wildcard depend),)
+include depend
 endif
 
 endif