chore: initialize project with cmake build system, makefile, readme, and empty source stubs

This commit is contained in:
2026-01-12 05:11:16 +00:00
commit 42c4a638e1
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)