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

Issue 167: Adjust top Makefile dependency ordering in submodule initialization #168

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
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
25 changes: 18 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ all: \

# The two CASE-Utility... files are to trigger rebuilds based on command-line interface changes or version increments.
.venv.done.log: \
.git_submodule_init.done.log \
dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/case_shacl_inheritance_reviewer/__init__.py \
dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/setup.cfg \
dependencies/UCO/requirements.txt
Expand Down Expand Up @@ -103,14 +102,26 @@ clean:
@rm -rf \
venv

# This recipe maintains timestamp order.
# The target file creation is handled by recursive initialization done
# in the recipe for .git_submodule_init.done.log.
dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/case_shacl_inheritance_reviewer/__init__.py: \
.git_submodule_init.done.log
$(MAKE) \
--directory dependencies/UCO \
dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/case_shacl_inheritance_reviewer/__init__.py
test -r $@
touch -c $@

# This recipe maintains timestamp order.
# The target file creation is handled by recursive initialization done
# in the recipe for .git_submodule_init.done.log.
dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/setup.cfg: \
.git_submodule_init.done.log
$(MAKE) \
--directory dependencies/UCO \
dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/setup.cfg
test -r $@
touch -c $@

# This recipe maintains timestamp order.
# The target file creation is handled by initialization done in the
# recipe for .git_submodule_init.done.log.
dependencies/UCO/requirements.txt: \
.git_submodule_init.done.log
test -r $@
touch -c $@