]> git.g-eek.se Git - ranknauto.git/commitdiff
Build. Provide fundamental building scripts
authorGustav Eek <gustav.eek@fripost.org>
Sun, 22 Jan 2023 16:57:16 +0000 (17:57 +0100)
committerGustav Eek <gustav.eek@fripost.org>
Sun, 22 Jan 2023 16:59:12 +0000 (17:59 +0100)
That is Git ignore file, Cargo configuration file, and a general
Makefile.

.gitignore [new file with mode: 0644]
Cargo.toml [new file with mode: 0644]
Makefile [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..e5470af
--- /dev/null
@@ -0,0 +1,11 @@
+# Copyright (C) 2023 Gustav Eek <gustav.eek@fripost.org>
+#
+# SPDX-License-Identifier: CC0-1.0
+
+*~
+*#*
+
+#Added by cargo
+
+/target
+*.lock
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644 (file)
index 0000000..0304310
--- /dev/null
@@ -0,0 +1,11 @@
+# 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]
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..d7418c2
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,42 @@
+# 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