From 851b54d4621f8c27abb65d962481e0644382d173 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Mon, 6 May 2024 15:36:50 -0400 Subject: remove function in makefile --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f2e5640..0802007 100644 --- a/Makefile +++ b/Makefile @@ -12,12 +12,16 @@ CFLAGS ?= -Werror -Wall build: build_dir $(OBJS) $(CC) -shared -o $(BUILD_DIR)/libopensmarts.so $(addprefix $(OBJ_DIR)/, $(OBJS)) -install: - install -m 755 ./build/libopensmarts.so /usr/lib64/libopensmarts.so +install: build + install -m 755 ./build/libopensmarts.so /usr/lib/libopensmarts.so rm -rf /usr/include/osm mkdir -p /usr/include/osm cp -r ./include/osm /usr/include +remove: + rm -rf /usr/include/osm + rm -rf /usr/lib/libopensmarts.so + %.o: $(SRC_DIR)/%.c $(CC) $(CFLAGS) -c -fpic -I$(INCLUDE_DIR) -o $(BUILD_DIR)/artifacts/$@ $< -- cgit v1.2.3