aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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>