mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
d24bba5e3e
Does Seer kill all inferiors after a "run/start"???
11 lines
222 B
Makefile
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
|
|
|