Init commit, python+ctype connected

This commit is contained in:
root
2022-12-16 16:27:38 +07:00
commit edc716c879
10 changed files with 393 additions and 0 deletions

7
Makefile Normal file
View File

@@ -0,0 +1,7 @@
CC=gcc
CFLAGS=
SFLAGS=-shared -fPIC
TARGET_DIR=lib
parser_lib.so: $(TARGET_DIR)
$(CC) $(SFLAGS) iptables_parser_lib.c -o $(TARGET_DIR)/$@