changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / makefile

changeset 12: c520966de7fa
parent: b9720ba9c4a0
child: 1fedeaa5bfc5
author: ellis <ellis@rwest.io>
date: Mon, 15 May 2023 21:40:24 -0400
permissions: -rw-r--r--
description: added quiche.h and some ui work
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;