1
0
forked from bonsai/harakit

Merge branch 'mm'

This commit is contained in:
2024-03-18 20:56:06 -06:00
3 changed files with 306 additions and 1 deletions

View File

@@ -17,7 +17,7 @@ CC=cc
RUSTC=rustc
.PHONY: all
all: dj false fop hru intcmp rpn scrut str strcmp swab true
all: dj false fop hru intcmp mm rpn scrut str strcmp swab true
build:
# keep build/include until bindgen(1) has stdin support
@@ -86,6 +86,11 @@ intcmp: build/bin/intcmp
build/bin/intcmp: src/intcmp.c build
$(CC) $(CFLAGS) -o $@ src/intcmp.c
.PHONY: mm
mm: build/bin/mm
build/bin/mm: src/mm.c build
$(CC) $(CFLAGS) -o $@ src/mm.c
.PHONY: rpn
rpn: build/bin/rpn
build/bin/rpn: src/rpn.rs build build/o/libsysexits.rlib