blob: da4030e2d95a33d6fe99b5358e8e32f3935d084a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
CFLAGS=-ansi -pedantic -Wall -I .. -g -O0
DEPS=../pb_decode.c ../pb_decode.h ../pb.h
all: test_decode1
clean:
rm -f test_decode1
test_decode1: test_decode1.c $(DEPS)
$(CC) $(CFLAGS) -o $@ $< ../pb_decode.c
|