feat: basic bump

This commit is contained in:
jingus 2026-06-15 21:53:39 -05:00
commit c86df50063
12 changed files with 535 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
OUT_DIR = .build
OBJECTS = src/*.c
prep-out:
@mkdir -p $(OUT_DIR)/bin
build: prep-out
@gcc -o $(OUT_DIR)/bin/out $(OBJECTS)
run: build
@$(OUT_DIR)/bin/out