libfakerand/Makefile

11 lines
159 B
Makefile
Raw Permalink Normal View History

2024-07-17 17:24:15 +00:00
CARGO_BUILD=cargo build --release
TARGET_DIR=target/release
LIB_NAME=libfakerand.so
INSTALL_DIR=/usr/lib
all: build
build:
$(CARGO_BUILD)
.PHONY: all build