aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-12 17:38:15 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-12 17:38:15 -0400
commitecabc3b4eaa1360193427dad349e4c7dcc500760 (patch)
tree3df9cf224ed10a759306454f48cd46fc5ebaf329
parent7171a7ba0a0ea8d9b7216d9aae16539948222702 (diff)
downloadapple_cmds-ecabc3b4eaa1360193427dad349e4c7dcc500760.tar.gz
apple_cmds-ecabc3b4eaa1360193427dad349e4c7dcc500760.tar.zst
apple_cmds-ecabc3b4eaa1360193427dad349e4c7dcc500760.zip
adv_cmds: Fix BINDIRs
-rw-r--r--adv_cmds/ps/Makefile10
-rw-r--r--adv_cmds/stty/Makefile11
2 files changed, 8 insertions, 13 deletions
diff --git a/adv_cmds/ps/Makefile b/adv_cmds/ps/Makefile
index 606ddb7..0c382a2 100644
--- a/adv_cmds/ps/Makefile
+++ b/adv_cmds/ps/Makefile
@@ -1,9 +1,7 @@
PROG= ps
-SRCS= fmt.c \
- keyword.c \
- nlist.c \
- print.c \
- ps.c \
- tasks.c
+SRCS= fmt.c keyword.c nlist.c \
+ print.c ps.c tasks.c
+
+BINDIR=/bin
.include <bsd.prog.mk>
diff --git a/adv_cmds/stty/Makefile b/adv_cmds/stty/Makefile
index ca4cb9f..c8ec706 100644
--- a/adv_cmds/stty/Makefile
+++ b/adv_cmds/stty/Makefile
@@ -1,10 +1,7 @@
PROG= stty
-SRCS= cchar.c \
- gfmt.c \
- key.c \
- modes.c \
- print.c \
- stty.c \
- util.c
+SRCS= cchar.c gfmt.c key.c \
+ modes.c print.c stty.c util.c
+
+BINDIR=/bin
.include <bsd.prog.mk>