Skip to content

Instantly share code, notes, and snippets.

@chrisforbes
Created September 20, 2009 20:58
Show Gist options
  • Save chrisforbes/189922 to your computer and use it in GitHub Desktop.
Save chrisforbes/189922 to your computer and use it in GitHub Desktop.
# automatic dependency generation for C
%.c.dep: %.c
@echo Generating dependencies for $<..
@$(CC) -MM -MF $@ $(CPPFLAGS) -c $<
-include $(SOURCES:.c=.c.dep)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment