changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / makefile

changeset 3: 8f59e2f1b8c4
parent: e4f8df713d55
child: 315fedf35bc7
author: ellis <ellis@rwest.io>
date: Fri, 05 May 2023 22:41:30 -0400
permissions: -rw-r--r--
description: stuff
1 L ?= sbcl
2 O ?= /tmp/demo
3 .PHONY:build
4 $(O):;mkdir -p $@
5 clean:;rm -rf out *.fasl;cargo clean
6 build:;scripts/build.ros
7 docs:;scripts/docs.ros
8 test:;scripts/test.ros
9 pack:;scripts/pack.ros
10 check:;scripts/check.ros
11 ci:clean build docs test pack;