druntime: Rename posix.mak to Makefile

This commit is contained in:
Martin Kinkelin 2023-12-09 03:33:39 +01:00 committed by Nicholas Wilson
parent 30cca65a69
commit bc793e59e9
7 changed files with 13 additions and 13 deletions

View file

@ -324,13 +324,13 @@ jobs:
run: |
# All hosts are 64 bits but let's be explicit
./dmd/compiler/src/build.d -j2 MODEL=64
make -C dmd/druntime -f posix.mak -j2 MODEL=64
make -C dmd/druntime -j2 MODEL=64
make -C phobos -f posix.mak -j2 MODEL=64
# Both version can live side by side (they end up in a different directory)
# However, since clang does not provide a multilib package, only test 32 bits with g++
if [ ${{ matrix.compiler }} == "g++" ]; then
./dmd/compiler/src/build.d install -j2 MODEL=32
make -C dmd/druntime -f posix.mak install -j2 MODEL=32
make -C dmd/druntime install -j2 MODEL=32
make -C phobos -f posix.mak install -j2 MODEL=32
fi