aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ic/test/java_client_erl_server_SUITE_data/Makefile.src
blob: 0d84a62270266814d0d7e8d5fbe060dbf89399b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#
# %CopyrightBegin%
# 
# Copyright Ericsson AB 2003-2011. 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
# compliance with the License. You should have received a copy of the
# Erlang Public License along with this software. If not, it can be
# retrieved online at http://www.erlang.org/.
# 
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License.
# 
# %CopyrightEnd%
#
#
# Makefile.src for java_client_erl_server test
# Note: This file *must* work for both Unix and Windows
#
# We use both `rm' (Unix) and `del' (Windows) for removing files, but
# with a `-' in front so that the error in not finding `rm' (`del') on
# Windows (Unix) is ignored.
#
# VxWorks? XXX 
#

.SUFFIXES:
.SUFFIXES: .erl .idl .@EMULATOR@ .java


JAVAC = @JAVAC@
ERLC = erlc

# ic variables available from ts: 
#
# ic_libpath: @ic_libpath@
# ic_include_path: @ic_include_path@

IC_INCLUDE_PATH = @ic_include_path@
IC_CLASSPATH = @ic_classpath@

JINTERFACE_CLASSPATH = @jinterface_classpath@

CLASSPATH = .@PS@$(IC_CLASSPATH)@PS@$(JINTERFACE_CLASSPATH)@PS@

GEN_JAVA_FILES = \
	m@DS@_iImplBase.java \
	m@DS@_iStub.java \
	m@[email protected] m@[email protected] m@[email protected] \
	m@[email protected] m@[email protected] m@[email protected]

GEN_HRL_FILES = \
	m.hrl \
	m_i.hrl \
	oe_java_erl_test.hrl

GEN_ERL_FILES = \
	m_i.erl \
	oe_java_erl_test.erl

JAVA_FILES = $(GEN_JAVA_FILES) JavaClient.java
CLASS_FILES = $(JAVA_FILES:.java=.class)
ERL_FILES = $(GEN_ERL_FILES) m_i_impl.erl
EBINS = $(ERL_FILES:.erl=.@EMULATOR@)


all: $(CLASS_FILES) $(EBINS)

$(GEN_ERL_FILES) $(GEN_HRL_FILES):  java_erl_test.built_erl
$(GEN_JAVA_FILES): java_erl_test.built_java
$(CLASS_FILES): $(GEN_JAVA_FILES)
$(EBINS): $(GEN_ERL_FILES) $(GEN_HRL_FILES)

clean:	
	-rm -f $(GEN_JAVA_FILES) $(CLASS_FILES) \
		$(GEN_ERL_FILES) $(GEN_HRL_FILES) $(EBINS) \
		java_erl_test.built_erl java_erl_test.built_java
	-del /F /Q $(GEN_JAVA_FILES) $(CLASS_FILES) \
		$(GEN_ERL_FILES) $(GEN_HRL_FILES) $(EBINS) \
		java_erl_test.built_erl java_erl_test.built_java

java_erl_test.built_java: java_erl_test.idl
	$(ERLC) -I $(IC_INCLUDE_PATH) "+{be,java}" java_erl_test.idl
	echo done > java_erl_test.built_java

$(CLASS_FILES) : $(JAVA_FILES)
	$(JAVAC) -classpath $(CLASSPATH) $(JAVA_FILES)

java_erl_test.built_erl: java_erl_test.idl
	$(ERLC) -I $(IC_INCLUDE_PATH) "+{be,erl_genserv}" java_erl_test.idl
	echo done > java_erl_test.built_erl

.erl.@EMULATOR@:
	$(ERLC) -I $(IC_INCLUDE_PATH) $<