diff options
Diffstat (limited to 'veslibrary/ves_cpplibrary/src/Makefile')
-rw-r--r-- | veslibrary/ves_cpplibrary/src/Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/veslibrary/ves_cpplibrary/src/Makefile b/veslibrary/ves_cpplibrary/src/Makefile deleted file mode 100644 index b0bc5eb..0000000 --- a/veslibrary/ves_cpplibrary/src/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -all: - mkdir build - cd build; cmake ..; make; make install - -.PHONY : test -test: - mkdir build - cd build; cmake .. -DENABLE_COVERAGE=ON; make; make install - mkdir test/build - cd test/build; cmake .. -DENABLE_COVERAGE=ON; make; ./xtest - lcov -c -d build/lib/encode/CMakeFiles/xencode.dir -d build/lib/transport/CMakeFiles/xtransport.dir -o coverage.info - lcov -r coverage.info '/usr/*' '*/transport/gen-cpp/*' -o xvesagent.info - genhtml xvesagent.info -o coverage - rm -rf *.info - -clean: - rm *.info -rf - rm build -rf - rm coverage -rf - rm test/build -rf |