Skip to content

Instantly share code, notes, and snippets.

@takiguri
Last active June 15, 2018 09:43
Show Gist options
  • Save takiguri/efaaaa048c3349baa7db2928945281a7 to your computer and use it in GitHub Desktop.
Save takiguri/efaaaa048c3349baa7db2928945281a7 to your computer and use it in GitHub Desktop.
Makefile Syntax
# 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