kojote/Makefile
Lobo Torres 04efdcac8e add pound literals for booleans and characters
replaces the old character literal syntax that i really didn't like and
feels more scheme-ish
2024-12-04 21:40:14 -03:00

14 lines
290 B
Makefile

.POSIX:
.SUFFIXES:
PREFIX=/usr/local
SRCDIR=${PREFIX}/src
HARESRCDIR=${SRCDIR}/hare
HARE=hare
HAREPATH=vendor/hare-unicode:${HARESRCDIR}/stdlib:${HARESRCDIR}/third-party
.PHONY: check build
check:
@env HAREPATH=${HAREPATH} hare test -T +test
build:
@env HAREPATH=${HAREPATH} hare build