Skip to content

Instantly share code, notes, and snippets.

@portablejim
Created January 27, 2011 06:55
Show Gist options
  • Save portablejim/798178 to your computer and use it in GitHub Desktop.
Save portablejim/798178 to your computer and use it in GitHub Desktop.
An example makefile
a.out: a.o b.o c.o
g++ a.o b.o c.o
a.o: a.h a.cpp
g++ -c a.cpp
b.o: b.h b.cpp
g++ -c b.cpp
c.o: c.h c.cpp
g++ -c c.cpp
clean:
rm *.o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment