Skip to content

Instantly share code, notes, and snippets.

@jhgaylor
Created April 11, 2016 16:30
Show Gist options
  • Save jhgaylor/8c6edd106a172546bcd86916b26da6b9 to your computer and use it in GitHub Desktop.
Save jhgaylor/8c6edd106a172546bcd86916b26da6b9 to your computer and use it in GitHub Desktop.
all: hello
hello: main.o factorial.o hello.o
g++ main.o factorial.o hello.o -o hello
main.o: main.cpp
g++ -c main.cpp
factorial.o: factorial.cpp
g++ -c factorial.cpp
hello.o: hello.cpp
g++ -c hello.cpp
clean:
rm *o hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment