From a8c40de7475c9db69dbb43e90176d37956b93fa3 Mon Sep 17 00:00:00 2001 From: DTB Date: Tue, 23 Jul 2024 17:39:03 -0600 Subject: [PATCH] pschdir(1) sans documentation, from trinity/src --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 94d0b78..482c321 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ RUSTLIBS = --extern getopt=build/o/libgetopt.rlib \ CFLAGS += -I$(SYSEXITS) .PHONY: all -all: dj false fop hru intcmp mm npc rpn scrut str strcmp swab true +all: dj false fop hru intcmp mm npc pschdir rpn scrut str strcmp swab true # keep build/include until bindgen(1) has stdin support # https://github.com/rust-lang/rust-bindgen/issues/2703 @@ -122,6 +122,11 @@ npc: build/bin/npc build/bin/npc: src/npc.c build $(CC) $(CFLAGAS) -o $@ src/npc.c +.PHONY: pschdir +pschdir: build/bin/pschdir +build/bin/pschdir: src/pschdir.c build + $(CC) $(CFLAGS) -o $@ src/pschdir.c + .PHONY: rpn rpn: build/bin/rpn build/bin/rpn: src/rpn.rs build rustlibs