Stopped using raco exe to compile makefile, instead use raco make. The docs say that there is no performance loss, and raco exe doesn't work properly on NixOs.

This commit is contained in:
Georges Dupéron 2016-01-25 18:44:41 +01:00
parent 6937d1b3ba
commit 4bab1e482f

View File

@ -1,9 +1,9 @@
.PHONY: all
all: make/make
make/make
all: make/compiled/make_rkt.zo
racket make/make.rkt
make/make: make/make.rkt make/lib.rkt
raco exe make/make.rkt
make/compiled/make_rkt.zo: make/make.rkt make/lib.rkt
raco make make/make.rkt
.PHONY: clean
clean: