changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / makefile

changeset 0: eb8ed24e8a76
child: e4f8df713d55
author: ellis <ellis@rwest.io>
date: Sun, 30 Apr 2023 22:01:32 -0400
permissions: -rw-r--r--
description: init
1 L ?= sbcl
2 O ?= /tmp/cl-demo
3 .PHONY:build
4 $(O):;mkdir -p $@
5 clean:;rm -rf out *.fasl;cargo clean
6 build:;ros/build.ros
7 docs:;ros/docs.ros
8 test:;ros/test.ros
9 pack:;ros/pack.ros
10 ci:clean build docs test pack;