#---------- sphnix ----------
doc-sphinx: docs/html/index.html \
- $(foreach f, $(EXAMPLE_BUNDLES), docs/html/examples/$f.zip)
+ $(foreach f, $(EXAMPLE_BUNDLES), docs/html/examples/$f.zip) \
+ $(addprefix docs/html/examples/, $(notdir $(wildcard specs/*.toml)))
@echo 'Documentation can now be found here:'
@echo ' file://$(PWD)/$<'
mkdir -p docs/html/examples
rm -f $@ && ln $< $@
+docs/html/examples/%.toml: specs/%.toml
+ mkdir -p docs/html/examples
+ rm -f $@ && ln $< $@
+
#---------- wasm ----------
$(addprefix $(WASM_PACKED)/,$(WASM_ASSETS) $(WASM_OUTPUTS)): stamp/wasm-bindgen
shape libraries automatically massaged into Otter bundle format,
and one massaged game spec.
-There are also several examples of game specs:
+There are also several game spec examples, such as:
-xxx
+ * `mao.game.toml <examples/mao.game.toml>`__ Mao, or many other
+ similar card games. Three decks, 9 jokers.
+
+ * `penultima.game.toml <examples/penultima.game.toml>`__ Manipulation
+ Rummy variants with two decks.
+
+ * `vatikan.game.toml <examples/vatikan.game.toml>`__ Manipulation
+ Rummy variants with two decks.
+
+Consult the `webserver directory listing <examples/>`__ for a complete
+list.