summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/utils/Makefile b/utils/Makefile
index ca9763a4..2ebdb303 100644
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -19,7 +19,17 @@ dir := utils
makemode := utilities
SRCS = sh.c ps.c su.c settrans.c update.c clri.c sync.c reboot.c halt.c
-targets = sh settrans update clri sync reboot halt # su
+targets = sh ps settrans update clri sync reboot halt # su
DIST_FILES = sh.ChangeLog ps.ChangeLog
+HURDLIBS=libps # Only used by ps.
+
+CPPFLAGS += -I../lib
+
+vpath %.c ../lib
+
include ../Makeconf
+
+ps: ps.o ihash.o $(HURDLIBS-files) $(libc)
+ $(CC) $(CFLAGS) $(LDFLAGS) -o ps ps.o $(HURDLIBS-files)
+