From b34e3a9c22310f92f554611a9b070655030456be Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sun, 29 Nov 2009 23:11:59 +0000 Subject: [PATCH] Clean up and add a Makefile to keep things clean. --- Makefile | 11 +++++++++++ index.html | 13 ++++++++++--- 2 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..925a28c --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +all: bedstead.otf + +bedstead.sfd: bedstead + ./bedstead > bedstead.sfd + +bedstead.otf: bedstead.sfd + fontforge -lang=ff -c 'Open($$1); Generate($$2)' \ + bedstead.sfd bedstead.otf + +clean: .PHONY + rm -f bedstead bedstead.sfd bedstead.otf diff --git a/index.html b/index.html index 8a730a1..15c6377 100644 --- a/index.html +++ b/index.html @@ -29,12 +29,19 @@ can convert it into most reasonable font formats.

+ +

The code to generate Bedstead is held in + Bazaar. + You can get your own copy by running

+
+

bzr branch http://bjh21.me.uk/bedstead/

+
-- 2.30.2