diff options
author | Leo Tenenbaum <leonardomtenenbaum@gmail.com> | 2018-03-23 00:00:50 -0400 |
---|---|---|
committer | Leo Tenenbaum <leonardomtenenbaum@gmail.com> | 2018-03-23 00:00:50 -0400 |
commit | 5e54af301b2b99e8479da3195ef30d0f8ec19227 (patch) | |
tree | 0647a605126d94cc914345c587512cf7a9b59dc3 /Makefile | |
parent | bedd7a371cc4649b95dc09bafa1c7ee23a4affb6 (diff) |
Initial commit
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e8e99f3 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +C=g++ +FLAGS=-std=c++11 -Wno-write-strings `pkg-config --libs --cflags sdl2` + +default: all + +all: src/*.cpp src/*.h + $(C) -o qualums src/*.cpp $(FLAGS) + +clean: + rm qualums |