Skip to content

Instantly share code, notes, and snippets.

View wonbyte's full-sized avatar

Greg Sieranski wonbyte

View GitHub Profile
@wonbyte
wonbyte / Makefile
Created April 19, 2025 22:37
C Makefile
# Debugging and tracing flags
TRACEFLAGS := -g -fno-omit-frame-pointer -funwind-tables
# Compiler and basic settings
CC := clang
VERSION := 1.0.0
DEVFLAGS := -Wall -Wextra -Wunused-parameter
INCLUDES := -I include
CFLAGS := $(DEVFLAGS) $(TRACEFLAGS) $(INCLUDES)
@wonbyte
wonbyte / Rust.md
Last active November 15, 2024 20:56