summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMilosz Wasilewski <milosz.wasilewski@hackbox.linaro.org>2014-10-02 10:16:33 +0100
committerMilosz Wasilewski <milosz.wasilewski@hackbox.linaro.org>2014-10-02 10:16:33 +0100
commit24689e01d37605141ce768d94a94f0be3421049d (patch)
treeb2ac61c7572a4bbb49aa5c871fe6f3fd68436db1 /Makefile
parente14eb051ff73ab8692770762adf44045ba092398 (diff)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Makefile b/Makefile
index 36ff2e4..3d5979b 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,6 @@ TARGETS = breakpoints
TARGETS += cpu-hotplug
TARGETS += efivarfs
TARGETS += kcmp
-TARGETS += memfd
TARGETS += memory-hotplug
TARGETS += mqueue
TARGETS += mount
@@ -12,11 +11,6 @@ TARGETS += timers
TARGETS += vm
TARGETS += powerpc
TARGETS += user
-TARGETS += sysctl
-TARGETS += firmware
-
-TARGETS_HOTPLUG = cpu-hotplug
-TARGETS_HOTPLUG += memory-hotplug
all:
for TARGET in $(TARGETS); do \
@@ -28,21 +22,6 @@ run_tests: all
make -C $$TARGET run_tests; \
done;
-hotplug:
- for TARGET in $(TARGETS_HOTPLUG); do \
- make -C $$TARGET; \
- done;
-
-run_hotplug: hotplug
- for TARGET in $(TARGETS_HOTPLUG); do \
- make -C $$TARGET run_full_test; \
- done;
-
-clean_hotplug:
- for TARGET in $(TARGETS_HOTPLUG); do \
- make -C $$TARGET clean; \
- done;
-
clean:
for TARGET in $(TARGETS); do \
make -C $$TARGET clean; \