preserves/schema/Makefile

9 lines
215 B
Makefile

all: schema.bin host.bin
%.bin: %.prs
../implementations/javascript/packages/schema-cli/bin/preserves-schemac.js --no-bundle .:$< > $@.tmp || (rm -f $@.tmp; false)
mv $@.tmp $@
clean:
rm -f schema.bin host.bin