~ubuntu-branches/ubuntu/trusty/erlang/trusty

« back to all changes in this revision

Viewing changes to lib/dialyzer/test/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2011-05-05 15:48:43 UTC
  • mfrom: (3.5.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110505154843-0om6ekzg6m7ugj27
Tags: 1:14.b.2-dfsg-3ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Drop libwxgtk2.8-dev build dependency. Wx isn't in main, and not
    supposed to.
  - Drop erlang-wx binary.
  - Drop erlang-wx dependency from -megaco, -common-test, and -reltool, they
    do not really need wx. Also drop it from -debugger; the GUI needs wx,
    but it apparently has CLI bits as well, and is also needed by -megaco,
    so let's keep the package for now.
  - debian/patches/series: Do what I meant, and enable build-options.patch
    instead.
* Additional changes:
  - Drop erlang-wx from -et
* Dropped Changes:
  - patches/pcre-crash.patch: CVE-2008-2371: outer level option with
    alternatives caused crash. (Applied Upstream)
  - fix for ssl certificate verification in newSSL: 
    ssl_cacertfile_fix.patch (Applied Upstream)
  - debian/patches/series: Enable native.patch again, to get stripped beam
    files and reduce the package size again. (build-options is what
    actually accomplished this)
  - Remove build-options.patch on advice from upstream and because it caused
    odd build failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include $(ERL_TOP)/make/target.mk
 
2
include $(ERL_TOP)/make/$(TARGET)/otp.mk
 
3
 
 
4
# ----------------------------------------------------
 
5
# Target Specs
 
6
# ----------------------------------------------------
 
7
 
 
8
MODULES= \
 
9
        callgraph_tests_SUITE \
 
10
        opaque_tests_SUITE \
 
11
        options1_tests_SUITE \
 
12
        options2_tests_SUITE \
 
13
        plt_tests_SUITE \
 
14
        r9c_tests_SUITE \
 
15
        race_tests_SUITE \
 
16
        small_tests_SUITE \
 
17
        user_tests_SUITE \
 
18
        dialyzer_common\
 
19
        file_utils
 
20
 
 
21
ERL_FILES= $(MODULES:%=%.erl)
 
22
 
 
23
TARGET_FILES= $(MODULES:%=$(EBIN)/%.$(EMULATOR))
 
24
 
 
25
INSTALL_PROGS= $(TARGET_FILES)
 
26
 
 
27
# ----------------------------------------------------
 
28
# Release directory specification
 
29
# ----------------------------------------------------
 
30
RELSYSDIR = $(RELEASE_PATH)/dialyzer_test
 
31
 
 
32
# ----------------------------------------------------
 
33
# FLAGS
 
34
# ----------------------------------------------------
 
35
 
 
36
ERL_MAKE_FLAGS +=
 
37
ERL_COMPILE_FLAGS += -I$(ERL_TOP)/lib/test_server/include
 
38
 
 
39
EBIN = .
 
40
 
 
41
EMAKEFILE=Emakefile
 
42
 
 
43
# ----------------------------------------------------
 
44
# Targets
 
45
# ----------------------------------------------------
 
46
 
 
47
make_emakefile:
 
48
        $(ERL_TOP)/make/make_emakefile $(ERL_COMPILE_FLAGS) -o$(EBIN) $(MODULES) \
 
49
        > $(EMAKEFILE)
 
50
 
 
51
tests debug opt: make_emakefile
 
52
        erl $(ERL_MAKE_FLAGS) -make
 
53
 
 
54
clean:
 
55
        rm -f $(EMAKEFILE)
 
56
        rm -f $(TARGET_FILES) $(GEN_FILES)
 
57
        rm -f core
 
58
 
 
59
docs:
 
60
 
 
61
# ----------------------------------------------------
 
62
# Release Target
 
63
# ----------------------------------------------------
 
64
include $(ERL_TOP)/make/otp_release_targets.mk
 
65
 
 
66
release_spec: opt
 
67
 
 
68
release_tests_spec: make_emakefile
 
69
        $(INSTALL_DIR) $(RELSYSDIR)
 
70
        $(INSTALL_DATA) $(EMAKEFILE) $(ERL_FILES) $(RELSYSDIR)
 
71
        $(INSTALL_DATA) dialyzer.spec dialyzer_test_constants.hrl $(RELSYSDIR)
 
72
        chmod -f -R u+w $(RELSYSDIR)
 
73
        @tar cf - *_SUITE_data | (cd $(RELSYSDIR); tar xf -)
 
74
 
 
75
release_docs_spec: