Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/arose13/poetryandmakefileexample


https://github.com/arose13/poetryandmakefileexample

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

# How to interpret a Makefile

```makefile
.PHONY:

:



```

For example
```makefile
.PHONY: install test run uninstall

install:
wget google.com
poetry install

run: install
@echo "Running the program"
poetry run python main.py
```