Update bootstrap to pull doodad sources

pull/84/head
Noah 2022-09-24 15:39:54 -07:00
parent 83f0a2fb49
commit 6404024d12
3 changed files with 4 additions and 3 deletions

View File

@ -153,7 +153,7 @@ The doodle-vendor repo has copies of these fonts.
Makefile commands for Unix-likes:
* `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 buildall`: runs all build steps: doodads, build.
* `make build-free`: build the shareware binaries to the `bin/` folder. See

View File

@ -64,10 +64,10 @@ wasm-serve: wasm
install:
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
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.
.PHONY: mingw

View File

@ -22,6 +22,7 @@ import pathlib
# Git repositories.
repos = {
"git@git.kirsle.net:SketchyMaze/doodads": "doodads",
"git@git.kirsle.net:SketchyMaze/masters": "masters",
"git@git.kirsle.net:SketchyMaze/vendor": "vendor",
"git@git.kirsle.net:SketchyMaze/rtp": "rtp",