Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / interop-tests / CdrOutArg / orbix / makefile
blob865cd473c4beb160997c3ec748a5c70b1ac11fb0
1 # mcknerney, 11/7/2013
3 CXXLOCAL_DEFINES=
5 include demo.mk
6 include cxx_demo.mk
8 LINK_WITH= -lit_poa -lit_art -lit_ifc -lit_portable_interceptor
10 SOURCES= server.cxx test_i.cxx server_interceptor.cxx Server_ORBInitializer.cxx testC.cxx testS.cxx
12 all: server
14 server: $(SOURCES) $(OBJS)
15 $(RM) $@
16 $(CXX) -o $@ $(CXXLDFLAGS) $(OBJS) $(LDLIBS)
17 $(ITADMIN) scope create taodemo
18 $(ITADMIN) variable create -scope taodemo -type list -value "Echo_Server_Interceptor, " binding:server_binding_list
19 $(ITADMIN) variable create -scope taodemo -type list -value "local_log_stream,iiop_profile,giop,iiop,portable_interceptor" orb_plugins
20 # @see:
21 # http://community.microfocus.com/microfocus/corba/orbix/w/knowledge_base/22500.marshalexception-when-using-a-tao-based-application-to-obtain-a-consumeradmin-reference-for-the-orbix-notification-service.aspx
22 # $(ITADMIN) variable create -scope taodemo -type bool -value true policies:giop:interop_policy:ignore_message_not_consumed
24 $(SOURCES): test.hh
26 test.hh: ../idl/test.idl
27 $(IDL) -base -poa -I$(ART_IDL_INCLUDE_DIR) ../idl/test.idl
29 clean:
30 $(RM) server *.o core test.hh testS.hh testC.cxx testS.cxx test.ior
31 $(ITADMIN) scope remove taodemo