aboutsummaryrefslogtreecommitdiffstats
path: root/lib/stdlib/test/Makefile
diff options
context:
space:
mode:
authorErlang/OTP <[email protected]>2009-11-20 14:54:40 +0000
committerErlang/OTP <[email protected]>2009-11-20 14:54:40 +0000
commit84adefa331c4159d432d22840663c38f155cd4c1 (patch)
treebff9a9c66adda4df2106dfd0e5c053ab182a12bd /lib/stdlib/test/Makefile
downloadotp-84adefa331c4159d432d22840663c38f155cd4c1.tar.gz
otp-84adefa331c4159d432d22840663c38f155cd4c1.tar.bz2
otp-84adefa331c4159d432d22840663c38f155cd4c1.zip
The R13B03 release.OTP_R13B03
Diffstat (limited to 'lib/stdlib/test/Makefile')
-rw-r--r--lib/stdlib/test/Makefile134
1 files changed, 134 insertions, 0 deletions
diff --git a/lib/stdlib/test/Makefile b/lib/stdlib/test/Makefile
new file mode 100644
index 0000000000..7a87eef5f3
--- /dev/null
+++ b/lib/stdlib/test/Makefile
@@ -0,0 +1,134 @@
+include $(ERL_TOP)/make/target.mk
+include $(ERL_TOP)/make/$(TARGET)/otp.mk
+
+# ----------------------------------------------------
+# Target Specs
+# ----------------------------------------------------
+
+MODULES= \
+ array_SUITE \
+ base64_SUITE \
+ beam_lib_SUITE \
+ c_SUITE \
+ calendar_SUITE \
+ dets_SUITE \
+ dict_SUITE \
+ dict_test_lib \
+ digraph_SUITE \
+ digraph_utils_SUITE \
+ dummy1_h \
+ dummy_h \
+ epp_SUITE \
+ erl_eval_helper \
+ erl_eval_SUITE \
+ erl_expand_records_SUITE \
+ erl_internal_SUITE \
+ erl_lint_SUITE \
+ erl_pp_SUITE \
+ erl_scan_SUITE \
+ escript_SUITE \
+ ets_SUITE \
+ ets_tough_SUITE \
+ filelib_SUITE \
+ file_sorter_SUITE \
+ filename_SUITE \
+ fixtable_SUITE \
+ format_SUITE \
+ gen_event_SUITE \
+ gen_fsm_SUITE \
+ gen_server_SUITE \
+ id_transform_SUITE \
+ io_SUITE \
+ io_proto_SUITE \
+ lists_SUITE \
+ log_mf_h_SUITE \
+ ms_transform_SUITE \
+ proc_lib_SUITE \
+ qlc_SUITE \
+ queue_SUITE \
+ random_SUITE \
+ re_SUITE \
+ run_pcre_tests \
+ re_testoutput1_replacement_test \
+ re_testoutput1_split_test \
+ slave_SUITE \
+ sets_SUITE \
+ sets_test_lib \
+ sofs_SUITE \
+ stdlib_SUITE \
+ string_SUITE \
+ supervisor_1 \
+ naughty_child \
+ shell_SUITE \
+ supervisor_SUITE \
+ supervisor_bridge_SUITE \
+ sys_SUITE \
+ tar_SUITE \
+ timer_SUITE \
+ timer_simple_SUITE \
+ unicode_SUITE \
+ win32reg_SUITE \
+ y2k_SUITE \
+ select_SUITE \
+ zip_SUITE \
+ random_unicode_list \
+ random_iolist \
+ error_logger_forwarder
+
+ERL_FILES= $(MODULES:%=%.erl)
+
+TARGET_FILES= $(MODULES:%=$(EBIN)/%.$(EMULATOR))
+
+INSTALL_PROGS= $(TARGET_FILES)
+
+# ----------------------------------------------------
+# Release directory specification
+# ----------------------------------------------------
+RELSYSDIR = $(RELEASE_PATH)/stdlib_test
+
+# ----------------------------------------------------
+# FLAGS
+# ----------------------------------------------------
+
+ERL_MAKE_FLAGS +=
+ERL_COMPILE_FLAGS += -I$(ERL_TOP)/lib/test_server/include \
+ -I$(ERL_TOP)/lib/kernel/include
+
+EBIN = .
+
+EMAKEFILE=Emakefile
+COVERFILE=stdlib.cover
+
+# ----------------------------------------------------
+# Targets
+# ----------------------------------------------------
+
+make_emakefile:
+ $(ERL_TOP)/make/make_emakefile $(ERL_COMPILE_FLAGS) -o$(EBIN) $(MODULES) \
+ >> $(EMAKEFILE)
+
+tests debug opt: make_emakefile
+ erl $(ERL_MAKE_FLAGS) -make
+
+clean:
+ rm -f $(EMAKEFILE)
+ rm -f $(TARGET_FILES)
+ rm -f core
+
+docs:
+
+# ----------------------------------------------------
+# Release Target
+# ----------------------------------------------------
+include $(ERL_TOP)/make/otp_release_targets.mk
+
+release_spec: opt
+
+release_tests_spec: make_emakefile
+ $(INSTALL_DIR) $(RELSYSDIR)
+ $(INSTALL_DATA) stdlib.spec stdlib.spec.vxworks $(EMAKEFILE) \
+ $(ERL_FILES) $(COVERFILE) $(RELSYSDIR)
+ chmod -f -R u+w $(RELSYSDIR)
+ @tar cf - *_SUITE_data | (cd $(RELSYSDIR); tar xf -)
+
+release_docs_spec: