postgres hook 测试成功

This commit is contained in:
2026-03-13 01:59:05 +00:00
parent a153ca5040
commit 544f532bf5
53 changed files with 5964 additions and 1674 deletions

View File

@@ -0,0 +1,12 @@
BIN_DIR := $(abspath $(CURDIR)/../bin)
PROTO_DIR := $(abspath $(CURDIR)/../../src/proto)
CFLAGS := -I$(abspath $(CURDIR)/../../src)
all:
gcc -g -o $(BIN_DIR)/ipc_echo_test ipc_echo_test.c
gcc -g $(CFLAGS) -o $(BIN_DIR)/ipc_zvfs_test ipc_zvfs_test.c $(PROTO_DIR)/ipc_proto.c
clean:
rm -rf $(BIN_DIR)/ipc_echo_test $(BIN_DIR)/ipc_zvfs_test