diff options
| author | Matthew Fennell <matthew@fennell.dev> | 2026-08-23 22:41:08 +0100 |
|---|---|---|
| committer | Matthew Fennell <matthew@fennell.dev> | 2026-08-23 22:41:08 +0100 |
| commit | 4982ef0e700193cbe9a30fd032ed2e385a701159 (patch) | |
| tree | 54ab5c3bb57b11a9f2b990a6a1e10e0168aeb6ba /Makefile | |
| parent | 58b762a53a5e64d6a6ea6999009d1899f7b6a4da (diff) | |
Add Makefile
Diffstat (limited to 'Makefile')
| -rwxr-xr-x | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100755 index 0000000..bc716c8 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +# SPDX-FileCopyrightText: 2026 Matthew Fennell <matthew@fennell.dev> +# +# SPDX-License-Identifier: AGPL-3.0-or-later + +.PHONY: install + +install: + sudo rm /usr/local/lib/python3.13/dist-packages/*.py + sudo cp *.py /usr/local/lib/python3.13/dist-packages/ |
