command-capture/Makefile
nganhkhoa f8e9c32b4b init
2025-05-15 21:29:37 +07:00

14 lines
224 B
Makefile

all: command-capture run
command-capture: main.c
clang -O2 -o command-capture main.c
run: execap
rm -rf test
./command-capture `which clang` -o test test.c
clean:
rm -rf command-capture test
.PHONY: all execap clean