Cleanup makefile

This commit is contained in:
David Voswinkel 2023-05-16 18:48:36 +00:00
parent f6b526c69f
commit 60fb0e4f12
2 changed files with 11 additions and 10 deletions

View file

@ -1,11 +1,12 @@
all:
docker run -v $$PWD:/usr/src/app -it portal64 make
build:
docker build -t portal64 .
bash:
docker run -v $$PWD:/usr/src/app -it portal64 bash
clean:
sudo rm -rf build
docker-build:
docker build -t portal64 .
docker-make:
docker run -v $$PWD:/usr/src/app -it portal64 make
docker-bash:
docker run -v $$PWD:/usr/src/app -it portal64 bash

View file

@ -108,14 +108,14 @@ make fix
Build the Docker image.
```sh
make -f Makefile.docker docker-build
make -f Makefile.docker build
```
<br />
Then build.
```sh
make -f Makefile.docker docker-make
make -f Makefile.docker
```
<br />