blob: 35c6f977ec9452fc2862ac797a7d974af04f76ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
CFLAGS=-ansi -Wall -Werror -I .. -g -O0
DEPS=../pb_decode.c ../pb_decode.h ../pb.h person.h
TESTS=test_decode1 decode_unittests
all: $(TESTS)
clean:
rm -f test_decode1
%: %.c $(DEPS)
$(CC) $(CFLAGS) -o $@ $< ../pb_decode.c
run_unittests: decode_unittests
./decode_unittests
run_fuzztest: test_decode1
bash -c 'I=1; while cat /dev/urandom | ./test_decode1 > /dev/null; do I=$$(($$I+1)); echo -en "\r$$I"; done'
|