Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
425 B
21 lines
425 B
13 years ago
|
obj-m = upb.o
|
||
|
|
||
|
upb-objs = \
|
||
|
../../upb/upb.o \
|
||
|
../../upb/bytestream.o \
|
||
|
../../upb/def.o \
|
||
|
../../upb/handlers.o \
|
||
|
../../upb/table.o \
|
||
|
../../upb/refcount.o \
|
||
|
../../upb/msg.o \
|
||
|
|
||
|
KVERSION = $(shell uname -r)
|
||
|
|
||
|
ccflags-y := -I$(PWD) -I$(PWD)/../.. -Wno-declaration-after-statement -std=gnu99
|
||
|
|
||
|
all:
|
||
|
make -C /lib/modules/$(KVERSION)/build M=$(PWD) modules
|
||
|
|
||
|
clean:
|
||
|
make -C /lib/modules/$(KVERSION)/build M=$(PWD) clean
|