Files
math_shell/Makefile
Robby Zambito c46c50737f Reading input in zig
using a readline style library too.
2025-03-25 20:15:44 -04:00

16 lines
292 B
Makefile

LIBRARIES = -lreadline
RELEASE_ARGS = -DRELEASEBUILD
SOURCES = ./msh.c
OUTPUT_DIR = ./zig-out/bin
OUTPUT_BIN = ${OUTPUT_DIR}/PROG
OUTPUT = -o ${OUTPUT_BIN}
build: output_dir
zig build install --release=fast
debug: output_dir
zig build
install:
mv ${OUTPUT_BIN:PROG=mash} /usr/sbin/blah