hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit fbb765d2a55758ac481b7c2722c56302e26f048d
parent 1937cfdfac0c4231eb7f25b7021e787222c9944e
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 22 Jan 2021 12:07:56 -0500

Add .build.yml

Diffstat:
A.build.yml | 23+++++++++++++++++++++++
1 file changed, 23 insertions(+), 0 deletions(-)

diff --git a/.build.yml b/.build.yml @@ -0,0 +1,23 @@ +image: alpine/latest +sources: +- https://git.sr.ht/~sircmpwn/qbe +- https://git.sr.ht/~sircmpwn/harec +- https://git.sr.ht/~sircmpwn/stdlib +- https://git.sr.ht/~sircmpwn/hare +tasks: +- qbe: | + cd qbe + make PREFIX=/usr + sudo make install PREFIX=/usr +- harec: | + mkdir harec/build + cd harec/build + ../configure --prefix=/usr + make -j2 + sudo make install +- hare: | + cd hare + cp config.example.mk config.mk + ln -s ../stdlib ./ + make + ./hare -v