Use CFLAGS when generating dependencies for GTK sources.

This commit is contained in:
Josh Elsasser 2006-04-04 10:34:15 +00:00
parent aaf5310949
commit 3f3e6f94c5
1 changed files with 1 additions and 1 deletions

View File

@ -18,6 +18,6 @@ clean:
.depend: $(SRCS) Makefile
$(RM) .depend
$(foreach SRC, $(SRCS), $(CC) -MM $(SRC) -D__TRANSMISSION__ >> .depend;)
$(foreach SRC, $(SRCS), $(CC) -MM $(SRC) $(CFLAGS) -D__TRANSMISSION__ >> .depend;)
include .depend