changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / makefile

changeset 10: 79737134254d
parent: b9720ba9c4a0
child: 1fedeaa5bfc5
author: ellis <ellis@rwest.io>
date: Fri, 12 May 2023 22:58:05 -0400
permissions: -rw-r--r--
description: messing with UI and rust codegen
1 L ?= sbcl
2 O ?= /tmp/demo
3 .PHONY:build
4 $(O):;mkdir -p $@
5 clean:;rm -rf *.fasl;scriipts/clean.ros
6 fmt:;scripts/fmt.ros
7 build:;scripts/build.ros
8 docs:;scripts/docs.ros
9 test:;scripts/test.ros
10 pack:;scripts/pack.ros
11 check:;scripts/check.ros
12 ci:clean fmt build docs test pack;