diff options
author | Anders Svensson <[email protected]> | 2011-09-27 20:26:47 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2011-09-27 20:26:47 +0200 |
commit | d897eea38983f0adfa0e8a2dc483879bc1126f94 (patch) | |
tree | 6b17d52c4e9dc2d6215363302c346bd8c6512e6d /lib/diameter/src/app/Makefile | |
parent | 571bc8c6135cb902e7cf9429f1bfad67284f8f23 (diff) | |
parent | 58fe7b5e48ad95f14b05aae43a3a32122695da4e (diff) | |
download | otp-d897eea38983f0adfa0e8a2dc483879bc1126f94.tar.gz otp-d897eea38983f0adfa0e8a2dc483879bc1126f94.tar.bz2 otp-d897eea38983f0adfa0e8a2dc483879bc1126f94.zip |
Merge branch 'dev' into major
Conflicts:
lib/diameter/src/app/Makefile
Diffstat (limited to 'lib/diameter/src/app/Makefile')
-rw-r--r-- | lib/diameter/src/app/Makefile | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/lib/diameter/src/app/Makefile b/lib/diameter/src/app/Makefile index 80e1fc7be2..96b7736a90 100644 --- a/lib/diameter/src/app/Makefile +++ b/lib/diameter/src/app/Makefile @@ -66,12 +66,20 @@ SPEC_ERL_FILES = \ SPEC_HRL_FILES = \ $(SPEC_FILES:%.dia=%.hrl) +MODULES = \ + $(RUNTIME_MODULES) \ + $(HELP_MODULES) + APP_MODULES = \ - $(MODULES) \ + $(RUNTIME_MODULES) \ $(SPEC_MODULES) +TARGET_MODULES = \ + $(APP_MODULES) \ + $(HELP_MODULES) + TARGET_FILES = \ - $(APP_MODULES:%=$(EBIN)/%.$(EMULATOR)) \ + $(TARGET_MODULES:%=$(EBIN)/%.$(EMULATOR)) \ $(APP_TARGET) \ $(APPUP_TARGET) @@ -133,17 +141,15 @@ info: # ---------------------------------------------------- # Generate the app file and then modules into in. This shouldn't know -# about ../{compiler,transport} but good enough for now. +# about ../transport but good enough for now. $(APP_TARGET): $(APP_SRC) \ ../../vsn.mk \ modules.mk \ - ../compiler/modules.mk \ ../transport/modules.mk sed -e 's;%VSN%;$(VSN);' $< > $@ M=`echo $(APP_MODULES) | sed -e 's/^ *//' -e 's/ *$$//' -e 'y/ /,/'`; \ echo "/%APP_MODULES%/s//$$M/;w;q" | tr ';' '\n' \ | ed -s $@ - $(MAKE) -C ../compiler $(APP_TARGET) APP_TARGET=$(APP_TARGET) $(MAKE) -C ../transport $(APP_TARGET) APP_TARGET=$(APP_TARGET) $(APPUP_TARGET): $(APPUP_SRC) ../../vsn.mk |