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`