c-protobuf/test/Makefile

19 lines
339 B
Makefile

CC = gcc
CFLAGS = -O0 -g3 -Wall -I../
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