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

Fixing Windows not playing nicely with mkdir. #149

Merged
merged 3 commits into from
Jul 17, 2020
Merged
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
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,13 @@ GDB = $(CROSS_COMPILE)gdb
NRFUTIL = adafruit-nrfutil
NRFJPROG = nrfjprog

MK = mkdir -p
# Set make directory command, Windows tries to create a directory named "-p" if that flag is there.
ifneq ($(OS), Windows_NT)
MK = mkdir -p
else
MK = mkdir
endif

RM = rm -rf

# auto-detect BMP on macOS, otherwise have to specify
Expand Down Expand Up @@ -324,7 +330,7 @@ print-%:

# Create build directories
$(BUILD):
@$(MK) $@
@$(MK) "$@"

clean:
@$(RM) $(BUILD)
Expand Down