X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=src%2Fgoogle%2Fprotobuf-c%2FMakefile;fp=src%2Fgoogle%2Fprotobuf-c%2FMakefile;h=c34f0d1d7d191a3e7738eedb88a992cbd88b2b57;hb=ac258369305673f3d17322b845ad58f2b9f64100;hp=0000000000000000000000000000000000000000;hpb=f2f5ea5f7b93cec959226292e528962514c03a81;p=umurmur.git diff --git a/src/google/protobuf-c/Makefile b/src/google/protobuf-c/Makefile new file mode 100644 index 0000000..c34f0d1 --- /dev/null +++ b/src/google/protobuf-c/Makefile @@ -0,0 +1,11 @@ +PROTOBUF_SRCS:=protobuf-c.c protobuf-c-data-buffer.c +PROTOBUF_OBJS:=$(patsubst %.c, %.o, $(PROTOBUF_SRCS)) +CFLAGS:=$(CFLAGS) -I. -Wall -g + +all: libprotobuf_c.a + +libprotobuf_c.a:$(PROTOBUF_OBJS) + $(AR) rcs libprotobuf_c.a $(PROTOBUF_OBJS) + +clean: + rm -f $(PROTOBUF_OBJS) libprotobuf_c.a