From 2db6d1421688b305a2714b56e79d5819d08803e2 Mon Sep 17 00:00:00 2001 From: zontreck Date: Wed, 31 Jul 2024 03:14:51 -0700 Subject: [PATCH] add install task --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b106e80..de5bbfc 100644 --- a/Makefile +++ b/Makefile @@ -9,10 +9,14 @@ all: clean build build: mkdir build - cd build && cmake .. && make && mv libac.so .. && cd .. + cd build && cmake .. && make # Clean up build artifacts clean: rm -rf build +install: build + cd build && make install + + .PHONY: all clean