The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
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.
 
 
 
 
 
 

11 lines
153 B

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