
BUILD_DIR = ../../build

TARGET = ./target/debug/srcrs

OUTPUT = rs.out

all: build

build:
	cargo build
	cp $(TARGET) $(BUILD_DIR)/$(OUTPUT)