1
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-12 02:14:52 +02:00

Use $(CC) instead of gcc even when generating dependencies.

This commit is contained in:
Martin Mares 1999-04-12 17:21:11 +00:00
parent 620c4f90c9
commit 113694892e

View File

@ -59,7 +59,7 @@ endif
$(CC) $(CFLAGS) -o $@ -c $<
depend:
gcc $(CPPFLAGS) -MM $(addprefix $(src-path),$(source)) >depend
$(CC) $(CPPFLAGS) -MM $(addprefix $(src-path),$(source)) >depend
ifneq ($(wildcard depend),)
include depend