Changeset 868c6b8 for Makefile


Ignore:
Timestamp:
Dec 19, 2018, 6:16:29 PM (6 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/constantq
Children:
dfe6ab6
Parents:
f87e191 (diff), fda3394 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into feature/constantq

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    rf87e191 r868c6b8  
    262262                --output-file build/coverage.info
    263263        # remove tests
    264         lcov $(LCOVOPTS) --remove build/coverage.info '*/tests/*' '*/ooura_fft8g*' \
     264        lcov $(LCOVOPTS) --remove build/coverage.info '*/ooura_fft8g*' \
    265265                --output-file build/coverage_lib.info
    266266
     
    268268coverage_report: export WAFOPTS += --disable-docs
    269269coverage_report: coverage
    270         # create coverage report dir
    271         mkdir -p build/coverage/
    272270        # generate report with lcov's genhtml
    273         genhtml build/coverage_lib.info --output-directory build/coverage/lcov \
     271        genhtml build/coverage_lib.info --output-directory build/coverage_c \
    274272                --branch-coverage --highlight --legend
    275273        # generate python report with coverage python package
    276274        coverage report
    277         coverage html -d build/coverage/coverage
     275        coverage html -d build/coverage_python
    278276        # show links to generated reports
    279         for i in $$(ls build/coverage/*/index.html); do echo file://$(PWD)/$$i; done
     277        for i in $$(ls build/coverage_*/index.html); do echo file://$(PWD)/$$i; done
    280278
    281279sphinx: configure
Note: See TracChangeset for help on using the changeset viewer.