fix example path

This commit is contained in:
Vinzenz Schroeter 2025-02-15 13:04:07 +01:00
parent c069c1966b
commit ac3c470b44

View file

@ -1,7 +1,7 @@
CC := gcc
THIS_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
REPO_ROOT := $(THIS_DIR)/../../../..
REPO_ROOT := $(THIS_DIR)/../../
build: out/lang_c
@ -28,7 +28,7 @@ dependencies: FORCE
mkdir -p include || true
# generate servicepoint header and binary to link against
SERVICEPOINT_HEADER_OUT=$(THIS_DIR)/include cargo build \
--manifest-path=$(REPO_ROOT)/crates/servicepoint_binding_c/Cargo.toml \
--manifest-path=$(REPO_ROOT)/Cargo.toml \
--release
FORCE: ;