Skip to content

Commit

Permalink
build.mk: mkdir with -p
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Dec 27, 2024
1 parent 10a8201 commit 58593d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ $(BIN)/%: $(OBJ)/%.o

# Create sub-directories for build targets
dep $(OBJ) $(LIB) $(BIN) apidoc:
mkdir $@
mkdir -p $@

# Remove intermediate files locally
.PHONY: clean-local
Expand Down

0 comments on commit 58593d6

Please sign in to comment.