changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / makefile

changeset 7: 315fedf35bc7
parent: 8f59e2f1b8c4
child: b9720ba9c4a0
author: ellis <ellis@rwest.io>
date: Sun, 07 May 2023 18:06:13 -0400
permissions: -rw-r--r--
description: rust ffi macros, general stuff
1 L ?= sbcl
2 O ?= /tmp/demo
3 .PHONY:build
4 $(O):;mkdir -p $@
5 clean:;rm -rf out *.fasl;cargo clean
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;