Files
CodeObject/space/src-rs/Makefile
2025-05-14 13:59:14 +09:00

12 lines
153 B
Makefile

BUILD_DIR = ../../build
TARGET = ./target/debug/srcrs
OUTPUT = rs.out
all: build
build:
cargo build
cp $(TARGET) $(BUILD_DIR)/$(OUTPUT)