diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-05-16 16:30:58 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-05-16 17:09:29 -0400 |
commit | bedd8f409a41bf2a2c9650eeda56effeda852817 (patch) | |
tree | 65843d59dd66a8d739eed836fb1484183f98311e /.github/workflows | |
parent | 5f3c1e965720d46bc00d2f4d98ac6bc34f8a022e (diff) | |
download | bfs-bedd8f409a41bf2a2c9650eeda56effeda852817.tar.xz |
Makefile: Split build into bin and obj directories
This also moves the main binary from ./bfs to ./bin/bfs, and ./tests.sh
to ./tests/tests.sh, with the goal of keeping the repository root clean.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/codecov.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 9bb407a..5853504 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -25,7 +25,7 @@ jobs: - name: Generate coverage run: | make -j$(nproc) gcov check - gcov -abcfu build/*/*.o + gcov -abcfu obj/*/*.o - uses: codecov/codecov-action@v2 with: |