12 lines
212 B
Makefile
12 lines
212 B
Makefile
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
|
|
|