aboutsummaryrefslogtreecommitdiffstats
path: root/lib/reltool/test/reltool_server_SUITE_data/Makefile.src
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2011-05-17 11:05:22 +0200
committerSiri Hansen <[email protected]>2011-05-17 11:05:22 +0200
commitc1e2d6d62e9932b3d438fb9466ab716c81b252c2 (patch)
tree0fda082fa28322df482ecff103324462a2aaf396 /lib/reltool/test/reltool_server_SUITE_data/Makefile.src
parent430056cfd0d8202337c87cb110818b8491caa41a (diff)
parent06f99b287fbb79e89831bedf1b2e64e7185f66c8 (diff)
downloadotp-c1e2d6d62e9932b3d438fb9466ab716c81b252c2.tar.gz
otp-c1e2d6d62e9932b3d438fb9466ab716c81b252c2.tar.bz2
otp-c1e2d6d62e9932b3d438fb9466ab716c81b252c2.zip
Merge branch 'siri/reltool/duplicated-module/OTP-9229' into dev
* siri/reltool/duplicated-module/OTP-9229: Allow same module name in multiple applications if explicitely excluded
Diffstat (limited to 'lib/reltool/test/reltool_server_SUITE_data/Makefile.src')
-rw-r--r--lib/reltool/test/reltool_server_SUITE_data/Makefile.src19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/reltool/test/reltool_server_SUITE_data/Makefile.src b/lib/reltool/test/reltool_server_SUITE_data/Makefile.src
new file mode 100644
index 0000000000..049e8dd6cc
--- /dev/null
+++ b/lib/reltool/test/reltool_server_SUITE_data/Makefile.src
@@ -0,0 +1,19 @@
+EFLAGS=+debug_info
+
+OTP9229= \
+ otp_9229/x-1.0/ebin/x.@EMULATOR@ \
+ otp_9229/x-1.0/ebin/mylib.@EMULATOR@ \
+ otp_9229/y-1.0/ebin/y.@EMULATOR@ \
+ otp_9229/y-1.0/ebin/mylib.@EMULATOR@
+
+
+all: $(OTP9229)
+
+otp_9229/x-1.0/ebin/x.@EMULATOR@: otp_9229/x-1.0/src/x.erl
+ erlc $(EFLAGS) -ootp_9229/x-1.0/ebin otp_9229/x-1.0/src/x.erl
+otp_9229/x-1.0/ebin/mylib.@EMULATOR@: otp_9229/x-1.0/src/mylib.erl
+ erlc $(EFLAGS) -ootp_9229/x-1.0/ebin otp_9229/x-1.0/src/mylib.erl
+otp_9229/y-1.0/ebin/y.@EMULATOR@: otp_9229/y-1.0/src/y.erl
+ erlc $(EFLAGS) -ootp_9229/y-1.0/ebin otp_9229/y-1.0/src/y.erl
+otp_9229/y-1.0/ebin/mylib.@EMULATOR@: otp_9229/y-1.0/src/mylib.erl
+ erlc $(EFLAGS) -ootp_9229/y-1.0/ebin otp_9229/y-1.0/src/mylib.erl