Skip to content
Snippets Groups Projects
Commit 05acfe81 authored by Philip Kaluđerčić's avatar Philip Kaluđerčić :u7121:
Browse files

Allow translating .q files in parallel

parent 2057d3ff
No related branches found
No related tags found
No related merge requests found
*~ *~
sp.q *.json
sp.json
QFILES != find . -name '[ws]s[[:digit:]][[:digit:]].q' -type f QFILES != find . -name '[ws]s[[:digit:]][[:digit:]].q' -type f
JFILES := $(QFILES:%.q=%.json)
.PHONY: all .PHONY: all
all: sp.json all: sp.json
sp.json: $(QFILES) $(JFILES): %.json: %.q
./gen.pl $^ > $@ ./gen.pl $< > $@
sp.json: $(JFILES)
jq -cs '[.[][]]' $^ > $@
.PHONY: clean .PHONY: clean
clean: clean:
rm -f sp.json rm -f sp.json $(JFILES)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment