Skip to content

Instantly share code, notes, and snippets.

@CapnKernel
Created October 6, 2012 05:02
Show Gist options
  • Save CapnKernel/3843947 to your computer and use it in GitHub Desktop.
Save CapnKernel/3843947 to your computer and use it in GitHub Desktop.
# Rule 1:
foo.o: foo.c
gcc -o foo.o -c foo.c
# Rule 1a (same):
foo.o: foo.c
gcc -o $@ -c $<
# Rule 1b (same, for foo.o):
%.o: %.c
gcc -o $@ -c $<
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment