summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--rules/memstat.in8
-rw-r--r--rules/memstat.make5
-rw-r--r--rules/tools.in8
3 files changed, 11 insertions, 10 deletions
diff --git a/rules/memstat.in b/rules/memstat.in
index 9a084a0e3..6ffd1c754 100644
--- a/rules/memstat.in
+++ b/rules/memstat.in
@@ -1 +1,7 @@
-# FIXME: There should be a *.in for this package
+config MEMSTAT
+ bool
+ default N
+ prompt "memstat"
+ help
+ memstat is a memory diagnose tool which lets you find
+ out which process uses how much virtual memory.
diff --git a/rules/memstat.make b/rules/memstat.make
index 5e57a8dc4..7ddf01c75 100644
--- a/rules/memstat.make
+++ b/rules/memstat.make
@@ -32,7 +32,7 @@ MEMSTAT_DIR = $(BUILDDIR)/memstat-$(MEMSTAT_VERSION)
memstat_get: $(STATEDIR)/memstat.get
-$(STATEDIR)/memstat.get: $(MEMSTAT_SOURCE)
+$(STATEDIR)/memstat.get: $(memstat_get_deps_default)
@$(call targetinfo, $@)
@$(call get_patches, $(MEMSTAT))
@$(call touch, $@)
@@ -47,6 +47,7 @@ $(MEMSTAT_SOURCE):
memstat_extract: $(STATEDIR)/memstat.extract
+$(STATEDIR)/memstat_extract: $(memstat_extract_deps_default)
@$(call targetinfo, $@)
@$(call clean, $(MEMSTAT_DIR))
@$(call extract, $(MEMSTAT_SOURCE))
@@ -88,7 +89,7 @@ $(STATEDIR)/memstat.compile: $(memstat_compile_deps_default)
memstat_install: $(STATEDIR)/memstat.install
-$(STATEDIR)/memstat.install: $(STATEDIR)/memstat.compile
+$(STATEDIR)/memstat.install: $(memstat_install_deps_default)
@$(call targetinfo, $@)
@$(call install, MEMSTAT)
@$(call touch, $@)
diff --git a/rules/tools.in b/rules/tools.in
index 0fa6e0cc6..8dd1c1e05 100644
--- a/rules/tools.in
+++ b/rules/tools.in
@@ -1,10 +1,4 @@
source "rules/figlet.in"
source "rules/memedit.in"
+source "rules/memstat.in"
-config MEMSTAT
- bool
- default N
- prompt "memstat"
- help
- memstat is a memory diagnose tool which lets you find
- out which process uses how much virtual memory.