Last active
June 15, 2018 09:43
-
-
Save takiguri/efaaaa048c3349baa7db2928945281a7 to your computer and use it in GitHub Desktop.
Makefile Syntax
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
# single line comment | |
# multi-line \ | |
comment | |
# Always use tabspace as indentation. ahoy space infidels! | |
target: dependencies | |
action | |
# eg | |
executable: main.o another.o | |
g++ main.o another.o -o executable | |
main.o: main.cpp | |
g++ -c main.cpp | |
another.o: another.cpp another.h | |
g++ -c another.cpp | |
clean: | |
rm *.o executable | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment