source: gsdl/trunk/src/corba/Makefile.in@ 15459

Last change on this file since 15459 was 15459, checked in by mdewsnip, 16 years ago

Started to move all the CORBA stuff out into a new "src/corba" directory, because it is uglying up the core source directories and Makefiles.

File size: 894 bytes
Line 
1# ===========================================================================================
2# CORBA SUPPORT
3
4USE_CORBA = @USE_CORBA@
5
6MCFLAGS = @CFLAGS@ -Wall -Wunused
7
8MICO_DIR = @MICO_DIR@
9ifeq ($(MICO_DIR), default)
10MICO_INC = -I../../packages/mico/include
11MICO_PATH = ../../bin/linux/
12else
13ifeq ($(MICO_DIR), yes)
14MICO_INC =
15MICO_PATH =
16else
17MICO_INC = -I$(MICO_DIR)
18MICO_PATH =
19endif
20endif
21MINCLUDES = -I. -I../../lib -I../recpt -I$(INDEXERS_DIR)/mgpp/text $(MICO_INC)
22
23MCOMPILE = $(MICO_PATH)mico-c++ -x c++ $(MCFLAGS) $(DEFS) $(MINCLUDES) -c
24
25.SUFFIXES: .mpp .o
26.mpp.o:
27 $(MCOMPILE) $<
28
29ifneq ($(USE_CORBA), 0)
30CORBAHEADERS = corbaServer.h
31CORBASOURCES = corbaServer.mpp
32CORBAOBJECTS = corbaServer.o ../../lib/corbaiface_skel.o
33else
34CORBAHEADERS =
35CORBASOURCES =
36CORBAOBJECTS =
37endif
38
39# ===========================================================================================
Note: See TracBrowser for help on using the repository browser.