9 lines
146 B
Makefile
9 lines
146 B
Makefile
|
all: schema-bundle.bin
|
||
|
|
||
|
clean:
|
||
|
rm -f schema-bundle.bin
|
||
|
|
||
|
schema-bundle.bin: schemas/*.prs
|
||
|
preserves-schemac schemas/*.prs > $@.tmp
|
||
|
mv $@.tmp $@
|