diff options
author | Anders Svensson <[email protected]> | 2014-03-29 13:21:11 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2014-03-29 19:20:45 +0100 |
commit | c23b242d0d634d10b03412c19768d381906578ab (patch) | |
tree | 7947b4d755780739c854ceb7765c8dacf61ce1ce /lib/diameter/src/modules.mk | |
parent | 888504300eb9b3f87de8243bbd8fa7e4dbf97f1d (diff) | |
download | otp-c23b242d0d634d10b03412c19768d381906578ab.tar.gz otp-c23b242d0d634d10b03412c19768d381906578ab.tar.bz2 otp-c23b242d0d634d10b03412c19768d381906578ab.zip |
Include compiler and info modules in app file
Albeit as comments. This is just to make it more obvious that these
aren't include in the modules list, since they typically aren't
needed/wanted on a target system. Also add comments for the
corresponding dependencies on syntax_tools and runtime_tools, as well as
the optional runtime dependency on ssl.
Diffstat (limited to 'lib/diameter/src/modules.mk')
-rw-r--r-- | lib/diameter/src/modules.mk | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/diameter/src/modules.mk b/lib/diameter/src/modules.mk index f8d3cf1d6f..9f9b6d3308 100644 --- a/lib/diameter/src/modules.mk +++ b/lib/diameter/src/modules.mk @@ -1,8 +1,7 @@ -#-*-makefile-*- ; force emacs to enter makefile-mode # %CopyrightBegin% # -# Copyright Ericsson AB 2010-2013. All Rights Reserved. +# Copyright Ericsson AB 2010-2014. All Rights Reserved. # # The contents of this file are subject to the Erlang Public License, # Version 1.1, (the "License"); you may not use this file except in @@ -64,16 +63,19 @@ RT_MODULES = \ transport/diameter_transport \ transport/diameter_transport_sup -# Handwritten (compile time) modules not included in the app file. +# Handwritten compiler modules not included in the app file. CT_MODULES = \ - base/diameter_dbg \ - base/diameter_info \ compiler/diameter_codegen \ compiler/diameter_exprecs \ compiler/diameter_dict_scanner \ compiler/diameter_dict_util \ compiler/diameter_make +# Info/debug modules, also not included in the app file. +INFO_MODULES = \ + base/diameter_dbg \ + base/diameter_info + # Released hrl files in ../include intended for public consumption. EXTERNAL_HRLS = \ diameter.hrl \ |