big update: simplifying + pandoc

This commit is contained in:
2024-09-13 08:22:21 -07:00
parent f16cb153e1
commit 291d55642d
24 changed files with 228 additions and 297 deletions

View File

@@ -1,6 +1,6 @@
# ----- Variables for customization -----
CC = gcc # Compiler (you can change to clang if desired)
CFLAGS = -g2 -Wall -Wextra #-fsanitize=address # Standard flags + debugging & warnings
CFLAGS = -g2 -Wall -Wextra #-fsanitize=address,undefined # Standard flags + debugging & warnings
LDFLAGS = # Linker flags, if any
# ----- Automatic dependency tracking -----
@@ -19,4 +19,4 @@ server: $(OBJS)
# Phony target for cleaning
.PHONY: clean
clean:
rm -f $(OBJS)
rm -f $(OBJS) server