libfakerand/Makefile

11 lines
159 B
Makefile

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