Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arose13/poetryandmakefileexample
https://github.com/arose13/poetryandmakefileexample
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/arose13/poetryandmakefileexample
- Owner: arose13
- Created: 2024-01-27T00:50:29.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-01-27T13:39:09.000Z (9 months ago)
- Last Synced: 2024-10-07T06:40:29.682Z (about 1 month ago)
- Language: Makefile
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to interpret a Makefile
```makefile
.PHONY::
```For example
```makefile
.PHONY: install test run uninstallinstall:
wget google.com
poetry installrun: install
@echo "Running the program"
poetry run python main.py
```