Home | History | Annotate | Download | only in protobuf_c
      1 #!/usr/bin/ruby
      2 
      3 require 'mkmf'
      4 
      5 $CFLAGS += " -std=c99 -O3 -DNDEBUG"
      6 
      7 $objs = ["protobuf.o", "defs.o", "storage.o", "message.o",
      8          "repeated_field.o", "map.o", "encode_decode.o", "upb.o"]
      9 
     10 create_makefile("google/protobuf_c")
     11