Initial commit

This commit is contained in:
2023-04-20 19:12:27 +02:00
commit 99bb308e2c
5 changed files with 50 additions and 0 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
CC := gcc
CFLAGS := -std=c17 -Wall -Wextra -g
CPPFLAGS :=
LDLIBS :=
fakeid.so: fakeid.c
$(CC) $(CFLAGS) -shared -fPIC -o fakeid.so fakeid.c
.PHONY: clean
clean:
rm -rf fakeid.so