mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-08 12:18:42 +00:00
Fixed trivial bug in naming of `depend' file. Argh.
This commit is contained in:
parent
663683a575
commit
cceb3e7d2f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user