mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-11-24 04:43:25 +03:00
dcaaed2060
We don't use it (the performance overhead is too much) so don't require it to be linked in.
12 lines
175 B
Makefile
12 lines
175 B
Makefile
.PHONY: idris2 clean
|
|
|
|
all: idris2
|
|
|
|
idris2: idris2.c
|
|
make -C rts
|
|
$(CC) $(OPT) idris2.c -o idris2 -I rts -L rts -lidris_rts -lgmp -lm
|
|
|
|
clean:
|
|
make -C rts clean
|
|
rm -f idris2
|