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.
12 lines
153 B
12 lines
153 B
2 years ago
|
CC = gcc
|
||
|
CPPFLAGS = -g -O3 -Wall -march=native
|
||
|
|
||
|
OBJS = main.o iconv.o naive.o
|
||
|
|
||
|
utf8to16: ${OBJS}
|
||
|
gcc $^ -o $@
|
||
|
|
||
|
.PHONY: clean
|
||
|
clean:
|
||
|
rm -f utf8to16 *.o
|