diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-11-17 11:08:36 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-11-17 11:08:36 +0100 |
commit | 6eb233902a3fd75d5cc7cf05572b3f762c24cad6 (patch) | |
tree | 681c5dcdfbad100ad708516dfd3e7cd98985e8c9 /Makefile | |
parent | 8eb26ddef667e7d24304cd7baae8287f9e397b2e (diff) | |
download | koszko-org-website-6eb233902a3fd75d5cc7cf05572b3f762c24cad6.tar.gz koszko-org-website-6eb233902a3fd75d5cc7cf05572b3f762c24cad6.zip |
use "-" notation for all phony target names in Makefilev2022.11.17
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -70,10 +70,10 @@ refresh-catalogs: $(GUIX_DEVSHELL) sh -c \ "python3 setup.py extract_messages && python3 setup.py update_catalog && python3 setup.py compile_catalog" -copied_license_files: +copied-license-files: $(GUIX_DEVSHELL) python3 setup.py copy_licenses -run-website: src/koszko_org_website/_version.py catalogs copied_license_files +run-website: src/koszko_org_website/_version.py catalogs copied-license-files PYTHONPATH=./src $(GUIX_DEVSHELL) python3 -m koszko_org_website reuse-lint: @@ -95,7 +95,7 @@ clean: clean-source-tarball-repack rm -rf $$(find -name "__pycache__") .PHONY: shell \ - wheel dist catalogs copied_license_files \ + wheel dist catalogs copied-license-files \ run-website refresh-catalogs \ reuse-lint mypy-lint \ clean-source-tarball-repack clean |