c-protobuf/test/Makefile

20 lines
349 B
Makefile

CC = gcc
CFLAGS = -O0 -g3 -Wall -I../ -std=c99
LFLAGS =
DEPS = ../protobuf.h
OBJS = testit.o ../protobuf.o ../varint.o Test1_protobuf.o Test2_protobuf.o Test3_protobuf.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
test_protobuf: $(OBJS)
$(CC) -o $@ $^ $(LFLAGS)
all: test_protobuf
clean:
rm -f *.o
rm -f test_protobuf
rebuild: clean all