Files
seer/tests/hellocheck/Makefile
T
Ernie Pasveer d24bba5e3e Test program for libcheck and testing fork/vfork
Does Seer kill all inferiors after a "run/start"???
2023-10-05 16:54:10 -05:00

11 lines
222 B
Makefile

.PHONY: all
all: check_money
check_money: check_money.c money.c
g++ -I/usr/local/include -L/usr/local/lib64 -lcheck -g -o check_money check_money.c money.c
.PHONY: clean
clean:
rm -f check_money check_money.o money.o