Skip to content

Commit

Permalink
Rename HOHQMesh.mak to Makefile (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
sloede authored Jun 7, 2021
1 parent 95ed5df commit 6715027
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
${{ matrix.compiler }} --version
- name: Build
run: |
make -f HOHQMesh.mak -j 2 F90=${{ matrix.compiler }}
make -j 2 F90=${{ matrix.compiler }}
- name: Run tests
run: |
./HOHQMesh -test
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@


## Installation
To build, edit the `HOHQMesh.mak` file as indicated in the header and move to
To build, edit the `Makefile` file as indicated in the header and move to
ones favorite directory. Type
```shell
make -f HOHQMesh.mak
make
```
That will build HOHQMesh.

Expand Down
4 changes: 2 additions & 2 deletions createcoverage
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
set -eox pipefail

# Clean up
make -f HOHQMesh.mak clean
make clean

# Build test suite
make -f HOHQMesh.mak -j 2 F90=$F90 FFLAGS="-cpp --coverage -O0" LDFLAGS="--coverage"
make -j 2 F90=$F90 FFLAGS="-cpp --coverage -O0" LDFLAGS="--coverage"

# Reset counters
lcov --directory . --zerocounters
Expand Down

0 comments on commit 6715027

Please sign in to comment.