+ replaced git info with "native git commands" + makefile created (install and uninstall recipes) + replace some X lines with one function (scan_file_alert) Squashed commit of the following: commit e397edce0ce785f3c8bd6cdca21cefc8ceab380d Author: Umgeher Torgersen <me@umgeher.org> Date: Tue May 2 12:03:05 2023 +0000 makefile! install and uninstall recipes commit 4c40647590e80297f05dbd2c072d80c90e45e8b6 Author: Umgeher Torgersen <me@umgeher.org> Date: Tue May 2 12:01:14 2023 +0000 git-info replaced commit 96702ab0efb760c9261eb2a24351c869b2202258 Author: Umgeher Torgersen <me@umgeher.org> Date: Fri Apr 28 20:29:30 2023 +0000 size pack added commit 123ee4e8b61e583d8f37bc8fee5d1fb0abb9d9f5 Author: Umgeher Torgersen <me@umgeher.org> Date: Fri Apr 28 20:10:04 2023 +0000 better code: scan file alert
10 lines
146 B
Makefile
10 lines
146 B
Makefile
.PHONY: install uninstall
|
|
.MAIN: install
|
|
|
|
install:
|
|
mkdir -p ~/bin
|
|
cp -v gseeker ~/bin
|
|
chmod +x ~/bin/gseeker
|
|
|
|
uninstall:
|
|
rm -vf ~/bin/gseeker
|