Skip to content

Commit

Permalink
Fix Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Feb 7, 2018
1 parent 99bdc3d commit 48f97b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ drop-pkg:
rm -rf build/uf2-samd21-$(VERSION)

tag:
$(MAKE) VERSION=`awk '/define UF2_VERSION_BASE/ { gsub(/"v?/, ""); print $$3 }' inc/uf2.h` do-tag
"$(MAKE)" VERSION=`awk '/define UF2_VERSION_BASE/ { gsub(/"v?/, ""); print $$3 }' inc/uf2.h` do-tag

do-tag:
git add inc/uf2.h
Expand All @@ -153,11 +153,11 @@ do-tag:
git tag "v$(VERSION)"
git push
git push --tag
$(MAKE) drop
"$(MAKE)" drop

all-boards:
for f in `cd boards; ls` ; do $(MAKE) BOARD=$$f drop-board ; done
for f in `cd boards; ls` ; do "$(MAKE)" BOARD=$$f drop-board ; done

drop: all-boards
$(MAKE) VERSION=`awk '/define UF2_VERSION_BASE/ { gsub(/"v?/, ""); print $$3 }' inc/uf2.h` drop-pkg
"$(MAKE)" VERSION=`awk '/define UF2_VERSION_BASE/ { gsub(/"v?/, ""); print $$3 }' inc/uf2.h` drop-pkg

0 comments on commit 48f97b2

Please sign in to comment.