comparison Makefile.mingw @ 281:57f08c61dbc3

Add $(CPPFLAGS) to .dep rule
author Konosuke Watanabe <sasugaanija@gmail.com>
date Mon, 15 Dec 2008 21:47:06 +0900
parents 2e9fefd1a285
children 5036603faa7a
comparison
equal deleted inserted replaced
280:2e9fefd1a285 281:57f08c61dbc3
82 82
83 clean: 83 clean:
84 rm -f $(OBJS) $(TARGET) $(DEPEND) *~ 84 rm -f $(OBJS) $(TARGET) $(DEPEND) *~
85 85
86 $(DEPEND): $(SRCS) 86 $(DEPEND): $(SRCS)
87 $(CC) -MM $(SRCS) > $@ 87 $(CC) -MM $(CPPFLAGS) $(SRCS) > $@
88 88
89 -include $(DEPEND) 89 -include $(DEPEND)