Skip to content

arose13/PoetryAndMakefileExample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

How to interpret a Makefile

.PHONY: <cmd 1> <cmd 2> <cmd 3>

<cmd>: <dep 1> <dep 2> <dep 3>
    <arbitary terminal cmd 1>
    <arbitary terminal cmd 2>
    <arbitary terminal cmd 3>

For example

.PHONY: install test run uninstall

install:
    wget google.com
    poetry install

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published