Skip to content

Instantly share code, notes, and snippets.

@tterb
Created November 11, 2016 11:56
Show Gist options
  • Save tterb/f763d5ae6b78fd97e72218a8a9adb90b to your computer and use it in GitHub Desktop.
Save tterb/f763d5ae6b78fd97e72218a8a9adb90b to your computer and use it in GitHub Desktop.
C++ Makefile example
# makefile
# define target, its dependencies and files
p5: main.o LinkedList.o
g++ -o p4 main.o LinkedList.o
# define how each object file is to be built
main.o: main.cpp LinkedList.h
g++ -c main.cpp
LinkedList.o: LinkedList.cpp LinkedList.h
g++ -c LinkedList.cpp
# clean up
clean:
rm -f p5 *.o *~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment