This commit is contained in:
2026-01-12 06:11:16 +01:00
commit 14d4678cd6
64 changed files with 6818 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
# Makefile for rhistory
# retoor <retoor@molodetz.nl>
BUILD_DIR = build
INSTALL_DIR = /usr/local/bin
.PHONY: all build clean install debug
all: build
build:
mkdir -p $(BUILD_DIR)
cd $(BUILD_DIR) && cmake .. && make
debug:
mkdir -p $(BUILD_DIR)
cd $(BUILD_DIR) && cmake -DCMAKE_BUILD_TYPE=Debug .. && make
install: build
cd $(BUILD_DIR) && sudo make install
clean:
rm -rf $(BUILD_DIR)