monorepo/kifu/core-types/Makefile

7 lines
153 B
Makefile
Raw Permalink Normal View History

2023-05-11 13:39:31 +00:00
SOURCES = $(shell find ../core -name "*.rs")
2023-05-16 02:20:40 +00:00
dist/index.ts: $(SOURCES)
2023-05-11 13:39:31 +00:00
mkdir -p dist
2023-05-16 02:20:40 +00:00
typeshare ../core --lang=typescript --output-file=dist/index.ts
2023-05-11 13:39:31 +00:00