Skip to content

Commit

Permalink
Add minimal Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
jonavellecuerdo committed Mar 5, 2024
1 parent 280970a commit 049478a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
SHELL=/bin/bash
DATETIME:=$(shell date -u +%Y%m%dT%H%M%SZ)

help: # preview Makefile commands
@awk 'BEGIN { FS = ":.*#"; print "Usage: make <target>\n\nTargets:" } \
/^[-_[:alpha:]]+:.?*#/ { printf " %-15s%s\n", $$1, $$2 }' $(MAKEFILE_LIST)

install: # install Python dependencies
pipenv install --dev

0 comments on commit 049478a

Please sign in to comment.