summaryrefslogtreecommitdiff
path: root/erts/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'erts/Makefile')
-rw-r--r--erts/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/erts/Makefile b/erts/Makefile
index 4d1234d1e7..cc0637dee9 100644
--- a/erts/Makefile
+++ b/erts/Makefile
@@ -40,7 +40,7 @@ all: $(if $(FLAVOR),$(FLAVOR),$(PRIMARY_FLAVOR))
docs:
$(V_at)( cd doc/src && $(MAKE) $@ )
-.PHONY: debug opt lcnt clean
+.PHONY: debug opt lcnt clean test
debug opt lcnt clean:
$(V_at)for d in emulator $(ERTSDIRS); do \
if test -d $$d; then \
@@ -49,6 +49,12 @@ debug opt lcnt clean:
done
(cd preloaded/src && $(MAKE) ../ebin/erts.app)
+
+.PHONY: test
+test:
+ TEST_NEEDS_RELEASE=true TYPE=$(TYPE) \
+ $(ERL_TOP)/make/test_target_script.sh $(ERL_TOP)
+
.PHONY: $(FLAVORS)
$(FLAVORS):
$(V_at)for type in $(TYPES); do \
@@ -167,5 +173,3 @@ release_docs:
.PHONY: xmllint
xmllint:
$(MAKE) -C doc/src $@
-
-include $(ERL_TOP)/make/app_targets.mk