2026-01-27T15:19:25

This commit is contained in:
2026-01-27 15:19:22 +01:00
commit 0a9c6df070
27 changed files with 2249 additions and 0 deletions

22
makefile Normal file
View File

@@ -0,0 +1,22 @@
#Makefile
CC=gcc
CFLAGS=-g -fanalyzer
# CFLAGS= -fanalyzer
# LIBS=-lsodium -larchive
SRC_FILES=main.c integrate.c
OBJ_FILES=$(SRC_FILES:.c=.o)
TARGET=main
$(TARGET): $(OBJ_FILES)
$(CC) $(CFLAGS) $(OBJ_FILES) $(LIBS) -o $(TARGET)
%.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
.PHONY: clean
clean:
rm -f $(OBJ_FILES)
# rm -f $(OBJ_FILES) $(TARGET)