Update capn_write_ptr to handle recursive structures when copying
This commit is contained in:
parent
14ac488681
commit
edfcaf9d34
5 changed files with 704 additions and 269 deletions
12
Makefile
Normal file
12
Makefile
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
.PHONY: all clean
|
||||
|
||||
all: capn.so
|
||||
|
||||
clean:
|
||||
rm -f *.o *.so
|
||||
|
||||
%.o: %.c *.h *.inc
|
||||
$(CC) -Wall -Werror -g -O2 -c $< -o $@
|
||||
|
||||
capn.so: capn.o
|
||||
$(CC) -shared -Wall -Werror -fPIC -g -O2 $^ -o $@
|
||||
Loading…
Add table
Add a link
Reference in a new issue