summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2009-03-10 21:20:17 +0100
committerAndreas Baumann <abaumann@yahoo.com>2009-03-10 21:20:17 +0100
commitcd21f5e5fcbbad23360387103829dbcc58347eb4 (patch)
tree3f959ef989b9a75870605ee6121b261a3cbafdf6 /makefiles
parent6ad1ef901b7a07bc8b070e64c4bf5e53f708cb7b (diff)
downloadwolfbones-cd21f5e5fcbbad23360387103829dbcc58347eb4.tar.gz
wolfbones-cd21f5e5fcbbad23360387103829dbcc58347eb4.tar.bz2
added PS_ALL varable for testd testing with fakeroot
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/gmake/platform.mk8
1 files changed, 8 insertions, 0 deletions
diff --git a/makefiles/gmake/platform.mk b/makefiles/gmake/platform.mk
index 87dc2d5..480bab2 100644
--- a/makefiles/gmake/platform.mk
+++ b/makefiles/gmake/platform.mk
@@ -56,3 +56,11 @@ LIBS_DL = -ldl
else
LIBS_DL =
endif
+
+# for testing, ps with all processes with as many information as possible
+ifeq "$(PLATFORM)" "FREEBSD"
+PS_ALL = ps aux
+else
+PS_ALL = ps -alef
+endif
+