14 lines
214 B
Makefile
14 lines
214 B
Makefile
|
DEPS := prettier elab-util hedgehog
|
||
|
|
||
|
|
||
|
.PHONY: all
|
||
|
all: build
|
||
|
|
||
|
.PHONY: $(DEPS)
|
||
|
$(DEPS): %:
|
||
|
idris2 --install vendor/$@/$@.ipkg
|
||
|
|
||
|
.PHONY: build
|
||
|
build: $(DEPS) $(shell find src -name '*.idr')
|
||
|
idris2 --build quix.ipkg
|