Y
Hacker News
new
|
ask
|
show
|
jobs
by
exDM69
3085 days ago
Put -MMD to CFLAGS and you can drop the rules to build dependency files. The compiler will then generate the deps files when compiling.
Don't use wildcards in clean target. Use $(RM) $(OBJS) $(DEPS) instead.