mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Fixed misspelling on README.development and added missing FIND_EXEC
to rspy/Makefile
This commit is contained in:
parent
ebe35c0a15
commit
bca96de75c
2 changed files with 4 additions and 3 deletions
|
@ -96,5 +96,5 @@ Windows users
|
||||||
1. Go to the menu `Build -> Build Solution`
|
1. Go to the menu `Build -> Build Solution`
|
||||||
1. Copy the file `portaudio\build\msvc\x64\Release\portaudio.lib` to `C:\Python\libs\` (Or whatever your Windows Python is installed)
|
1. Copy the file `portaudio\build\msvc\x64\Release\portaudio.lib` to `C:\Python\libs\` (Or whatever your Windows Python is installed)
|
||||||
1. Open a `cmd.exe` (command prompt) on the anki repository and run the command `sh run`
|
1. Open a `cmd.exe` (command prompt) on the anki repository and run the command `sh run`
|
||||||
1. Do not `bash run` because it my call for Windows Subsystem fo Linux
|
1. Do not use `bash run` because it my call for Windows Subsystem fo Linux
|
||||||
1. Do not use any Cygwin terminal as `mintty.exe` because the `rust lang` compiler does not work with them
|
1. Do not use any Cygwin terminal as `mintty.exe` because the `rust lang` compiler does not work with them
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
SHELL := /bin/bash
|
SHELL := /bin/bash
|
||||||
ECHOCMD := /bin/echo -e
|
ECHOCMD := /bin/echo -e
|
||||||
|
FIND_EXEC := $(if $(wildcard /bin/find),,/usr)/bin/find
|
||||||
|
|
||||||
.SHELLFLAGS := -eu -o pipefail -c
|
.SHELLFLAGS := -eu -o pipefail -c
|
||||||
.DELETE_ON_ERROR:
|
.DELETE_ON_ERROR:
|
||||||
|
@ -21,8 +22,8 @@ all: develop
|
||||||
develop: .build/develop
|
develop: .build/develop
|
||||||
|
|
||||||
DEPS := .build/tools .build/vernum ../meta/buildhash $(wildcard $(QT_FTLS)/*.ftl) \
|
DEPS := .build/tools .build/vernum ../meta/buildhash $(wildcard $(QT_FTLS)/*.ftl) \
|
||||||
$(shell find ../rslib/src -name '*.rs') $(wildcard ../proto/*) \
|
$(shell ${FIND_EXEC} ../rslib/src -name '*.rs') $(wildcard ../proto/*) \
|
||||||
$(shell find ../rslib/ftl -type f)
|
$(shell ${FIND_EXEC} ../rslib/ftl -type f)
|
||||||
|
|
||||||
.build/develop: $(DEPS)
|
.build/develop: $(DEPS)
|
||||||
touch ../proto/backend.proto
|
touch ../proto/backend.proto
|
||||||
|
|
Loading…
Reference in a new issue