diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-11-17 11:08:36 +0100 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-11-21 11:54:36 +0100 |
commit | b582468bb70afba7196b12a8dcd022547426ad97 (patch) | |
tree | cbd272a1159b8a57e76f6b5feb44900cb30b3526 /Makefile | |
parent | 4d0fa42919eb007b1fc19875fef1cb395226b891 (diff) | |
download | koszko-org-website-b582468bb70afba7196b12a8dcd022547426ad97.tar.gz koszko-org-website-b582468bb70afba7196b12a8dcd022547426ad97.zip |
use "-" notation for all phony target names in Makefilev2022.11.21
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 |