commit 4663bb33a71ecb5a188d89014ba66e89e0391ee1 parent d0820a8807f128e1fd25aa50d517bec869e61a54 Author: Andrew Laack <andrew@laack.co> Date: Tue, 15 Sep 2026 00:52:08 -0500 Updated makefile Diffstat:
| M | .gitignore | | | 1 | - |
| A | background/Makefile | | | 6 | ++++++ |
| D | background/src/Makefile | | | 6 | ------ |
3 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/.gitignore b/.gitignore @@ -1 +0,0 @@ -background diff --git a/background/Makefile b/background/Makefile @@ -0,0 +1,6 @@ +build: + g++ -Ofast src/main.cpp src/graph.cpp src/edge.cpp src/utils.cpp src/vertex.cpp -lraylib -o background +install: build + cp background /usr/local/bin +clean: + rm background diff --git a/background/src/Makefile b/background/src/Makefile @@ -1,6 +0,0 @@ -build: - g++ -Ofast main.cpp graph.cpp edge.cpp utils.cpp vertex.cpp -lraylib -o background -install: build - cp background /usr/local/bin -clean: - rm background