Skip to content

Instantly share code, notes, and snippets.

@zodiac1111
Created August 22, 2014 05:16
Show Gist options
  • Save zodiac1111/0c175c580689990f432d to your computer and use it in GitHub Desktop.
Save zodiac1111/0c175c580689990f432d to your computer and use it in GitHub Desktop.
make根据代码依赖头文件
%.o:%.d
%.d:%.c
@set -e; rm -f $@; \
$(CC) -MM $(CPPFLAGS) $< > $@.$$$$; \
sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \
rm -f $@.$$$$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment