Created
November 11, 2016 11:56
-
-
Save tterb/f763d5ae6b78fd97e72218a8a9adb90b to your computer and use it in GitHub Desktop.
C++ Makefile example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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