diff options
author | Santo Cariotti <sancn@live.com> | 2017-05-27 15:32:20 +0200 |
---|---|---|
committer | Santo Cariotti <sancn@live.com> | 2017-05-27 15:32:20 +0200 |
commit | 09422247fe86c55961ffd53587fe0ea8772e452c (patch) | |
tree | cb7778c732ee1d702228c9e94209bc10cf138c87 /Makefile | |
parent | 7c88519ee77ea85ec6bbdc0fa45f2e2b26422a57 (diff) |
added travis
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..74db46d --- /dev/null +++ b/Makefile @@ -0,0 +1,6 @@ +CC=g++ +CFLAGS=-o +CVERSION=c++11 + +$1: $1.cpp + $(CC) -Wall -std=$(CVERSION) $(CFLAGS) cpp/$1 cpp/$1.cpp |