2022-11-20 20:47:27 -06:00
|
|
|
LIST=bell bigorlittle compare-directories compress-all diff-args expand-all failcount home-git logged-shell src-maintenance sslinfo standardize-folder sysinfo whatismyip worktrack
|
2018-12-11 17:07:05 -06:00
|
|
|
LOCATION=${pkgdir}/usr/local/bin
|
2016-11-09 22:25:00 -06:00
|
|
|
PERMISSION=0755
|
|
|
|
compile:
|
|
|
|
@echo Nothing to compile.
|
|
|
|
|
|
|
|
install: compile
|
2017-03-29 17:45:16 -05:00
|
|
|
mkdir -p ${LOCATION}
|
2016-11-18 11:10:05 -06:00
|
|
|
for i in ${LIST}; do cp ./$$i ${LOCATION}; done
|
2016-11-09 22:25:00 -06:00
|
|
|
make checkperm
|
|
|
|
|
|
|
|
reverse:
|
|
|
|
for i in ${LIST}; do cp ${LOCATION}/$$i .; done
|
|
|
|
|
|
|
|
test: ${LIST}
|
|
|
|
for i in ${LIST}; do [ "$$(grep -c '#/bin/bash' $$i)" -ne 1 ]; done
|
|
|
|
|
|
|
|
checkperm:
|
|
|
|
for i in ${LIST}; do chown root:root ${LOCATION}/$$i; chmod ${PERMISSION} ${LOCATION}/$$i; done
|
|
|
|
|
|
|
|
clean:
|
|
|
|
@echo Nothing to do.
|
|
|
|
|
2017-06-19 16:36:22 -05:00
|
|
|
diff:
|
|
|
|
for i in ${LIST}; do diff ./$$i ${LOCATION}/$$i; done
|