summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authordanix <danix@danix.xyz>2023-03-29 11:19:55 +0200
committerdanix <danix@danix.xyz>2023-03-29 11:19:55 +0200
commitfb71118327216a21f6732161dc3721496a16370d (patch)
tree96eddf131b1d802be87addd7faece45141e98a9a /Makefile
parentad818a9d1e26462bfb0c36d585dcbc33b38b37ca (diff)
downloadbash-notes-fb71118327216a21f6732161dc3721496a16370d.tar.gz
bash-notes-fb71118327216a21f6732161dc3721496a16370d.zip
Separated script into multiple files for easier management. Added Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..0875513
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,5 @@
+all: notes.sh
+
+notes.sh: SOURCE/head.sh SOURCE/CORE/helpers.sh SOURCE/CORE/core-* SOURCE/main.sh
+ cat $^ > "$@" || (rm -f "$@"; exit 1)
+ chmod 755 "$@"