mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
more makefile fixes
can't rely on SHELLFLAGS on macOS
This commit is contained in:
parent
a684ac120f
commit
fe18594c50
1 changed files with 5 additions and 2 deletions
7
Makefile
7
Makefile
|
@ -30,7 +30,8 @@ buildhash:
|
|||
|
||||
.PHONY: run
|
||||
run: pyenv buildhash
|
||||
@. pyenv/bin/activate && \
|
||||
@set -e && \
|
||||
. pyenv/bin/activate && \
|
||||
for dir in $(DEVEL); do \
|
||||
$(SUBMAKE) -C $$dir develop BUILDFLAGS="$(BUILDFLAGS)"; \
|
||||
done; \
|
||||
|
@ -59,7 +60,8 @@ build-qt:
|
|||
|
||||
.PHONY: clean
|
||||
clean: clean-dist
|
||||
@for dir in $(DEVEL); do \
|
||||
@set -e && \
|
||||
for dir in $(DEVEL); do \
|
||||
$(SUBMAKE) -C $$dir clean; \
|
||||
done
|
||||
|
||||
|
@ -81,6 +83,7 @@ check: pyenv buildhash
|
|||
|
||||
.PHONY: fix
|
||||
fix:
|
||||
@set -e && \
|
||||
for dir in $(CHECKABLE); do \
|
||||
$(SUBMAKE) -C $$dir fix; \
|
||||
done; \
|
||||
|
|
Loading…
Reference in a new issue