Merge branch 'simexec' into overgrown

This commit is contained in:
dtb
2024-07-23 18:54:35 -06:00
3 changed files with 120 additions and 1 deletions

View File

@@ -32,7 +32,8 @@ RUSTLIBS = --extern getopt=build/o/libgetopt.rlib \
CFLAGS += -I$(SYSEXITS)
.PHONY: all
all: dj false fop hru intcmp mm npc pschdir retval rpn scrut str strcmp swab true
all: dj false fop hru intcmp mm npc pschdir retval rpn scrut simexec str \
strcmp swab true
# keep build/include until bindgen(1) has stdin support
# https://github.com/rust-lang/rust-bindgen/issues/2703
@@ -142,6 +143,11 @@ scrut: build/bin/scrut
build/bin/scrut: src/scrut.c build
$(CC) $(CFLAGS) -o $@ src/scrut.c
.PHONY: simexec
simexec: build/bin/simexec
build/bin/simexec: src/simexec.c build
$(CC) $(CFLAGS) -o $@ src/simexec.c
.PHONY: str
str: build/bin/str
build/bin/str: src/str.c build