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 | |
parent | 7c88519ee77ea85ec6bbdc0fa45f2e2b26422a57 (diff) |
added travis
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | Makefile | 6 | ||||
-rw-r--r-- | cpp/Makefile | 6 | ||||
-rw-r--r-- | cpp/checksum.cpp | 8 | ||||
-rw-r--r-- | lswf.cpp (renamed from cpp/lswf.cpp) | 0 |
5 files changed, 7 insertions, 15 deletions
diff --git a/.travis.yml b/.travis.yml index bbba71c..d3e104c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,4 +9,4 @@ install: - sudo apt-get install -qq g++-4.8 - export CXX="g++-4.8" -script: $(CXX) -std=c++11 -o cpp/somme cpp/somme.cpp +script: make lswf 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 diff --git a/cpp/Makefile b/cpp/Makefile deleted file mode 100644 index ad5e8f5..0000000 --- a/cpp/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -CC=g++ -CFLAGS=-o -CVERSION=c++11 - -$1: $1.cpp - $(CC) -Wall -std=$(CVERSION) $(CFLAGS) $1 $1.cpp diff --git a/cpp/checksum.cpp b/cpp/checksum.cpp deleted file mode 100644 index e80398f..0000000 --- a/cpp/checksum.cpp +++ /dev/null @@ -1,8 +0,0 @@ -#include <iostream> -#include <fstream> - -int main() -{ - - return 0; -} |