diff options
author | mrb0nk500 <b0nk@b0nk.xyz> | 2020-01-10 15:58:09 -0500 |
---|---|---|
committer | mrb0nk500 <b0nk@b0nk.xyz> | 2020-01-10 15:58:09 -0500 |
commit | 3344c607e7c639f894d5acce39c5eb4413e35047 (patch) | |
tree | 568d1dba8bb0187340af952ef190406aa7391dc3 /Makefile |
Finished the Sux Base ISA.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b1cac3b --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +OBJ = sux-spec.pdf +COVER = sux-cover.ms +SRC = sux-spec.ms + +all: clean sux.pdf + +sux.pdf: sux-spec.ms + soelim $(SRC) | dformat.awk | pdfroff --stylesheet=$(COVER) -tp -mspdf - --pdf-output=$(OBJ) + +clean: + rm -f $(OBJ) |