That is Git ignore file, Cargo configuration file, and a general
Makefile.
--- /dev/null
+# Copyright (C) 2023 Gustav Eek <gustav.eek@fripost.org>
+#
+# SPDX-License-Identifier: CC0-1.0
+
+*~
+*#*
+
+#Added by cargo
+
+/target
+*.lock
--- /dev/null
+# Copyright (C) 2023 Gustav Eek <gustav.eek@fripost.org>
+#
+# SPDX-License-Identifier: CC0-1.0
+
+[package]
+name = "ranknauto"
+version = "0.1.0"
+authors = ["Gustav Eek <gustav.eek@fripost.org>"]
+edition = "2018"
+
+[dependencies]
--- /dev/null
+# Main build instruction for the project
+#
+# Copyright (C) 2023 Gustav Eek <gustav.eek@fripost.org>
+#
+# SPDX-License-Identifier: CC0-1.0
+
+PRJ := $(notdir $(PWD))
+
+.PHONY: release test install
+
+# Build
+
+BIN = target/release/$(PRJ)
+
+release:
+ cargo build --release
+
+$(BIN): release
+
+# Install and uninstall
+
+TRG = $(HOME)/.local/bin/$(PRJ)
+
+install: $(TRG)
+
+$(TRG): $(BIN)
+ test -d $(dir $@)
+ install $< $@
+
+uninstall:
+ rm -f $(TRG)
+
+# Test
+
+test:
+ cargo build
+ cargo check
+
+# Clean
+
+clean:
+ rm -fr target