feat: makefile and readme

This commit is contained in:
violette 2025-05-02 13:41:00 -04:00
parent 805e12f721
commit be90134ebe
2 changed files with 11 additions and 0 deletions

7
Makefile Normal file
View file

@ -0,0 +1,7 @@
CFLAGS = -lm
build:
cc ./main.c $(CFLAGS) -o ./cube
run: build
./cube

4
README.md Normal file
View file

@ -0,0 +1,4 @@
# cube
this displays my cv as a cube in a terminal.
to run (and build), just `make run`