diff options
author | Anders Svensson <[email protected]> | 2011-10-16 15:09:35 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2011-10-19 17:47:06 +0200 |
commit | 955bbc378a146611929551cdabcfe63264a570ac (patch) | |
tree | 1dd4c2181f86891085e5fd7edf12db8886de7907 /lib/diameter/src/modules.mk | |
parent | af9759875f237353339fad921ad82a712f889dcc (diff) | |
download | otp-955bbc378a146611929551cdabcfe63264a570ac.tar.gz otp-955bbc378a146611929551cdabcfe63264a570ac.tar.bz2 otp-955bbc378a146611929551cdabcfe63264a570ac.zip |
Minor tweaks and cleanup
Tweak some comments and variable names, move things around a bit
(default src target is now opt, not debug), only clean what's built,
use +warn_export_vars.
Diffstat (limited to 'lib/diameter/src/modules.mk')
-rw-r--r-- | lib/diameter/src/modules.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/diameter/src/modules.mk b/lib/diameter/src/modules.mk index ef72bab17b..c7cbe598af 100644 --- a/lib/diameter/src/modules.mk +++ b/lib/diameter/src/modules.mk @@ -19,7 +19,7 @@ # Runtime dictionary files in ./dict. Modules will be generated from # these are included in the app file. -RT_DICTS = \ +DICTS = \ base_rfc3588 \ base_accounting \ relay @@ -66,13 +66,13 @@ CT_MODULES = \ compiler/diameter_spec_util \ compiler/diameter_make -# Released hrl files intended for public consumption. -EXTERNAL_HRL_FILES = \ - ../include/diameter.hrl \ - ../include/diameter_gen.hrl +# Released hrl files in ../include intended for public consumption. +EXTERNAL_HRLS = \ + diameter.hrl \ + diameter_gen.hrl -# Release hrl files intended for private use. -INTERNAL_HRL_FILES = \ +# Released hrl files intended for private use. +INTERNAL_HRLS = \ base/diameter_internal.hrl \ base/diameter_types.hrl \ compiler/diameter_forms.hrl |