Created
December 17, 2010 07:38
-
-
Save shafreeck/744626 to your computer and use it in GitHub Desktop.
Makefile example
This file contains 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
all:hello test1 test2 test3 | |
hello:hello.o | |
g++ -o hello hello.o | |
hello.o:hello.cc | |
g++ -c -o hello.o hello.cc | |
clean: | |
rm *.o hello | |
install: | |
cp hello /usr/local/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment