13 lines
156 B
Makefile
13 lines
156 B
Makefile
|
SRCS = $(wildcard *.py)
|
||
|
PREFIX = /usr
|
||
|
|
||
|
all:
|
||
|
|
||
|
format:
|
||
|
black $(SRCS)
|
||
|
|
||
|
install:
|
||
|
install -Dm755 admin.py $(PREFIX)/bin/admin_script
|
||
|
|
||
|
.PHONY: format install
|