From be90134ebe79b5d0ce81829ff2748d1215c9d207 Mon Sep 17 00:00:00 2001 From: violette Date: Fri, 2 May 2025 13:41:00 -0400 Subject: [PATCH] feat: makefile and readme --- Makefile | 7 +++++++ README.md | 4 ++++ 2 files changed, 11 insertions(+) create mode 100644 Makefile create mode 100644 README.md diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4334cef --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CFLAGS = -lm + +build: + cc ./main.c $(CFLAGS) -o ./cube + +run: build + ./cube diff --git a/README.md b/README.md new file mode 100644 index 0000000..f208397 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# cube +this displays my cv as a cube in a terminal. + +to run (and build), just `make run`