Files
retrowin32/web/Makefile
T
2025-03-10 07:06:32 -07:00

16 lines
329 B
Makefile

profile?=release
all: index.html wasm web-check
appdb_entries = $(shell find ../appdb -type f -name '*.toml')
index.html: ../appdb/appdb.go index.tmpl $(appdb_entries)
cd ../appdb && ./run.sh
wasm glue/pkg/glue.d.ts &:
cd glue && profile=$(profile) ./build.sh
web-check: glue/pkg/glue.d.ts
npx tsc
.PHONY: wasm web-check