diff options
author | Erlang/OTP <[email protected]> | 2010-02-10 10:03:53 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-02-10 11:07:36 +0100 |
commit | fcdb09923b20934123f52814458c065a1dd27cf3 (patch) | |
tree | ca860d3e70df87786a959043bbe6a970f633db96 /lib/compiler/src/Makefile | |
parent | d115b311ca388145fb1aebf385206c47d3cc9ec1 (diff) | |
parent | a612e99fb5aaa934fe5a8591db0f083d7fa0b20a (diff) | |
download | otp-fcdb09923b20934123f52814458c065a1dd27cf3.tar.gz otp-fcdb09923b20934123f52814458c065a1dd27cf3.tar.bz2 otp-fcdb09923b20934123f52814458c065a1dd27cf3.zip |
Merge branch 'ks/compiler' into ccase/r13b04_dev
* ks/compiler:
compiler: keep line numbers for attributes
compiler Makefile: alphabetize module names
compile.erl: eliminate compiler warning
Diffstat (limited to 'lib/compiler/src/Makefile')
-rw-r--r-- | lib/compiler/src/Makefile | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/lib/compiler/src/Makefile b/lib/compiler/src/Makefile index 022347d5a8..70ddd54145 100644 --- a/lib/compiler/src/Makefile +++ b/lib/compiler/src/Makefile @@ -45,46 +45,46 @@ RELSYSDIR = $(RELEASE_PATH)/lib/compiler-$(VSN) # Target Specs # ---------------------------------------------------- MODULES = \ - compile \ - sys_pre_attributes \ - sys_pre_expand \ - sys_expand_pmod \ - v3_core \ - sys_core_fold \ - sys_core_inline \ - sys_core_dsetel \ - core_lib \ - core_scan \ - core_parse \ - core_lint \ - core_pp \ - v3_kernel \ - v3_kernel_pp \ - v3_life \ - v3_codegen \ + beam_asm \ beam_block \ beam_bool \ - beam_dead \ - beam_jump \ - beam_type \ - beam_clean \ - beam_peep \ beam_bsm \ - beam_trim \ + beam_clean \ + beam_dead \ + beam_dict \ + beam_disasm \ beam_flatten \ + beam_jump \ beam_listing \ - beam_asm \ - beam_dict \ beam_opcodes \ - beam_disasm \ + beam_peep \ + beam_trim \ + beam_type \ beam_utils \ beam_validator \ - erl_bifs \ cerl \ cerl_clauses \ cerl_inline \ cerl_trees \ - rec_env + compile \ + core_lib \ + core_lint \ + core_parse \ + core_pp \ + core_scan \ + erl_bifs \ + rec_env \ + sys_core_dsetel \ + sys_core_fold \ + sys_core_inline \ + sys_expand_pmod \ + sys_pre_attributes \ + sys_pre_expand \ + v3_codegen \ + v3_core \ + v3_kernel \ + v3_kernel_pp \ + v3_life BEAM_H = $(wildcard ../priv/beam_h/*.h) |