Skip to content

Commit

Permalink
Add install-runtime to Makefile
Browse files Browse the repository at this point in the history
This makes it easier to build multiple per-target runtime targets and install them together.
  • Loading branch information
agoode committed May 13, 2024
1 parent 49eb2ca commit bcf69cc
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,11 @@ runtime:
echo "GMP_INC_DIR=\"$(WITH_GMP_INC_DIR)\"" >> "$(LIB)/targets/$(TARGET)/vars"
echo "GMP_LIB_DIR=\"$(WITH_GMP_LIB_DIR)\"" >> "$(LIB)/targets/$(TARGET)/vars"

.PHONY: install-runtime
install-runtime:
$(MKDIR) "$(TLIB)/targets/$(TARGET)"
$(CP) "$(LIB)/targets/$(TARGET)" "$(TLIB)/targets/"

.PHONY: script
script:
$(SED) \
Expand Down

0 comments on commit bcf69cc

Please sign in to comment.