1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-01-31 03:12:44 +00:00

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

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