diff --git a/Building.md b/Building.md index a19b824..d47a2ef 100644 --- a/Building.md +++ b/Building.md @@ -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 diff --git a/Makefile b/Makefile index ffd2bdd..78a3c93 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/bootstrap.py b/bootstrap.py index efff9c5..8ac8391 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -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",