diff options
author | Peter <petershh@disroot.org> | 2022-07-18 15:33:23 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 15:33:23 +0300 |
commit | 91e838c2e983e9dc6dde665c0dd2be94828c4a78 (patch) | |
tree | c04e8037660c7494a2924ccbbd08f3903fda5948 /package | |
parent | a56e9b74a901d5497425411f7f70db5f0d47baf0 (diff) | |
download | shh-portable-utils-91e838c2e983e9dc6dde665c0dd2be94828c4a78.tar.xz |
Add uname
Diffstat (limited to 'package')
-rw-r--r-- | package/deps.mak | 3 | ||||
-rw-r--r-- | package/modes | 1 | ||||
-rw-r--r-- | package/targets.mak | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/package/deps.mak b/package/deps.mak index a42736e..3b30510 100644 --- a/package/deps.mak +++ b/package/deps.mak @@ -14,6 +14,7 @@ src/shh-portable-utils/false.o src/shh-portable-utils/false.lo: src/shh-portable src/shh-portable-utils/shhgetln.o src/shh-portable-utils/shhgetln.lo: src/shh-portable-utils/shhgetln.c src/shh-portable-utils/shhfuncs.h src/shh-portable-utils/tee.o src/shh-portable-utils/tee.lo: src/shh-portable-utils/tee.c src/shh-portable-utils/true.o src/shh-portable-utils/true.lo: src/shh-portable-utils/true.c +src/shh-portable-utils/uname.o src/shh-portable-utils/uname.lo: src/shh-portable-utils/uname.c src/shh-portable-utils/uniq.o src/shh-portable-utils/uniq.lo: src/shh-portable-utils/uniq.c src/shh-portable-utils/shhfuncs.h basename: EXTRA_LIBS := -lskarnet @@ -36,5 +37,7 @@ tee: EXTRA_LIBS := -lskarnet tee: src/shh-portable-utils/tee.o true: EXTRA_LIBS := true: src/shh-portable-utils/true.o +uname: EXTRA_LIBS := -lskarnet +uname: src/shh-portable-utils/uname.o uniq: EXTRA_LIBS := -lskarnet uniq: src/shh-portable-utils/uniq.o src/shh-portable-utils/shhgetln.o src/shh-portable-utils/byte_notin.o diff --git a/package/modes b/package/modes index cb27b3b..1e8defc 100644 --- a/package/modes +++ b/package/modes @@ -9,3 +9,4 @@ false 0755 tee 0755 true 0755 uniq 0755 +uname 0755 diff --git a/package/targets.mak b/package/targets.mak index ed47a8a..6dd5c95 100644 --- a/package/targets.mak +++ b/package/targets.mak @@ -9,6 +9,7 @@ dirname \ false \ tee \ true \ +uname \ uniq LIBEXEC_TARGETS := |