Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

re-synchronized .PHONY lists #251

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,16 @@ ifdef LINKML_COOKIECUTTER_GEN_DOC_ARGS
GEN_DARGS = ${LINKML_COOKIECUTTER_GEN_DOC_ARGS}
endif

.PHONY: all clean gen-project gendoc site test test-python

# basename of a YAML file in model/
.PHONY: all \
clean gen-project gendoc schema-clean site test test-python
# from project.Makefile
.PHONY: schema-clean

# not declared phony by the cookiecutter this repo was bootstrapped from
.PHONY: check check-config cruft-check cruft-diff git-add git-commit git-init git-init-add git-status help \
lint run-examples serve setup status test-schema testdoc update update-linkml update-template

# .PHONY: mkd-% # ???

# note: "help" MUST be the first target in the file,
# when the user types "make" they should get help info
Expand Down
6 changes: 4 additions & 2 deletions project.Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
RUN=poetry run

.PHONY: modifications-clean run-linkml-validation schema-clean schema_all \
sheets_and_friends-clean sheets_and_friends_all
.PHONY: modifications-clean schema-clean sheets_and_friends-clean dh-build dh-dev examples-clean post-clean \
run-examples squeaky-clean

# .PHONY clean # from Makefile

squeaky-clean: clean schema-clean

Expand Down
Loading