Update bootstrap to pull doodad sources
This commit is contained in:
parent
83f0a2fb49
commit
6404024d12
|
@ -153,7 +153,7 @@ The doodle-vendor repo has copies of these fonts.
|
||||||
Makefile commands for Unix-likes:
|
Makefile commands for Unix-likes:
|
||||||
|
|
||||||
* `make setup`: install Go dependencies and set up the build environment
|
* `make setup`: install Go dependencies and set up the build environment
|
||||||
* `make doodads`: build the default Doodads from sources in `dev-assets/`
|
* `make doodads`: build the default Doodads from sources in `deps/doodads/`
|
||||||
* `make build`: build the Doodle and Doodad binaries to the `bin/` folder.
|
* `make build`: build the Doodle and Doodad binaries to the `bin/` folder.
|
||||||
* `make buildall`: runs all build steps: doodads, build.
|
* `make buildall`: runs all build steps: doodads, build.
|
||||||
* `make build-free`: build the shareware binaries to the `bin/` folder. See
|
* `make build-free`: build the shareware binaries to the `bin/` folder. See
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -64,10 +64,10 @@ wasm-serve: wasm
|
||||||
install:
|
install:
|
||||||
go install git.kirsle.net/SketchyMaze/doodle/cmd/...
|
go install git.kirsle.net/SketchyMaze/doodle/cmd/...
|
||||||
|
|
||||||
# `make doodads` to build the doodads from the dev-assets folder.
|
# `make doodads` to build the doodads from the deps/doodads folder.
|
||||||
.PHONY: doodads
|
.PHONY: doodads
|
||||||
doodads:
|
doodads:
|
||||||
cd dev-assets/doodads && ./build.sh > /dev/null
|
cd deps/doodads && ./build.sh > /dev/null
|
||||||
|
|
||||||
# `make mingw` to cross-compile a Windows binary with mingw.
|
# `make mingw` to cross-compile a Windows binary with mingw.
|
||||||
.PHONY: mingw
|
.PHONY: mingw
|
||||||
|
|
|
@ -22,6 +22,7 @@ import pathlib
|
||||||
|
|
||||||
# Git repositories.
|
# Git repositories.
|
||||||
repos = {
|
repos = {
|
||||||
|
"git@git.kirsle.net:SketchyMaze/doodads": "doodads",
|
||||||
"git@git.kirsle.net:SketchyMaze/masters": "masters",
|
"git@git.kirsle.net:SketchyMaze/masters": "masters",
|
||||||
"git@git.kirsle.net:SketchyMaze/vendor": "vendor",
|
"git@git.kirsle.net:SketchyMaze/vendor": "vendor",
|
||||||
"git@git.kirsle.net:SketchyMaze/rtp": "rtp",
|
"git@git.kirsle.net:SketchyMaze/rtp": "rtp",
|
||||||
|
|
Loading…
Reference in New Issue
Block a user