Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ryosukedtomita/makefile-study
Studying how to write Makefile
https://github.com/ryosukedtomita/makefile-study
cpp docker-compose makefile
Last synced: about 2 months ago
JSON representation
Studying how to write Makefile
- Host: GitHub
- URL: https://github.com/ryosukedtomita/makefile-study
- Owner: RyosukeDTomita
- License: unlicense
- Created: 2024-02-14T10:09:59.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-03-14T13:10:29.000Z (10 months ago)
- Last Synced: 2024-05-11T05:55:25.247Z (8 months ago)
- Topics: cpp, docker-compose, makefile
- Language: Makefile
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Makefile Studying with docker
![un license](https://img.shields.io/github/license/RyosukeDTomita/makefile-study)
## INDEX
- [ABOUT](#about)
- [LICENSE](#license)
- [ENVIRONMENT](#environment)
- [PREPARING](#preparing)
- [HOW TO USE](#how-to-use)
- [ABOUT](#about)---
## ABOUT
Makefile の使い方を勉強したメモ。
---
## LICENSE
[FIXME](./LICENSE)
---
## ENVIRONMENT
C++17, g++-10, make
---
## PREPARING
1. install docker
---
## HOW TO USE
1. Clone this repository.
2. build the docker image.```shell
cd makefile-study
docker buildx bake
```3. Run the docker container to compile and execute
```shell
docker compose run -it make-app make
docker compose run -it make-app make execute
---
```