You've already forked retrowin32
mirror of
https://github.com/encounter/retrowin32.git
synced 2026-03-30 11:35:51 -07:00
16 lines
329 B
Makefile
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
|