Skip to content

Commit

Permalink
Ensure use of install is portable
Browse files Browse the repository at this point in the history
  • Loading branch information
georgestagg committed Nov 27, 2023
1 parent b482a42 commit 2d77015
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,10 @@ $(BUILD)%.o : $(SOURCE)%.cpp

.PHONY: install
install: $(FLANG_BIN) $(RUNTIME_LIB)
install -D -t $(HOST)/bin -m 755 $(FLANG_BIN)
install -D -t $(WASM)/lib -m 644 $(RUNTIME_LIB)
mkdir -p $(HOST)/bin
mkdir -p $(WASM)/lib
install -m 755 $(FLANG_BIN) $(HOST)/bin
install -m 644 $(RUNTIME_LIB) $(WASM)/lib

.PHONY: check
check:
Expand Down

0 comments on commit 2d77015

Please sign in to comment.