source: trunk/gsdl/lib/Makefile.in@ 2173

Last change on this file since 2173 was 2173, checked in by cs025, 23 years ago

Improvements to configure scripts in their support of various MICO
environment considerations, particularly when MICO is on the system
paths.

Fixed CORBA version of ping to correspond with parameters etc. of the
native form.

Finally, improved PING action to be more than a simple call to
the HASCOLLECTION action in the null protocol.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.3 KB
Line 
1###########################################################################
2#
3# Makefile -- lib
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 1999 The New Zealand Digital Library Project
9#
10#
11# This program is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24#
25###########################################################################
26
27
28AR = ar
29CC = @CC@
30CPP = @CXX@
31#CCFLAGS = @CFLAGS@ -Wall -Wunused -pedantic -W -Woverloaded-virtual
32CCFLAGS = @CFLAGS@
33MCFLAGS = -Wall -Wunused
34DEFS = @DEFS@
35INCLUDES = -I../packages/mg/lib -I..
36MICO_DIR = @MICO_DIR@
37ifeq ($(MICO_DIR), default)
38MICO_INC = -I../packages/mico/mico/include
39MICO_PATH = ../bin/linux/
40else
41ifeq ($(MICO_DIR), yes)
42MICO_INC =
43else
44MICO_INC = -I$(MICO_DIR)
45endif
46MICO_PATH =
47endif
48MINCLUDES = -I/usr/include/g++-2/ -I/usr/lib/gcc-lib/i386-slackware-linux/egcs-2.91.66/include/ -I/usr/include -I. -I../packages/mg/lib $(MICO_INC) -I..
49RANLIB = @RANLIB@
50USE_CORBA = @USE_CORBA@
51
52COMPILE = $(CC) -c $(CCFLAGS) $(DEFS) $(INCLUDES)
53CPPCOMPILE = $(CPP) -c $(CCFLAGS) $(DEFS) $(INCLUDES)
54
55ifneq ($(USE_CORBA), 0)
56MCOMPILE = $(MICO_PATH)mico-c++ -x c++ $(MCFLAGS) $(DEFS) $(MINCLUDES) -c
57else
58MCOMPILE = $(COMPILE)
59endif
60
61.SUFFIXES:
62.SUFFIXES: .c .o
63.c.o:
64 $(COMPILE) $<
65
66.SUFFIXES: .cpp .o
67.cpp.o:
68 $(CPPCOMPILE) $<
69
70.SUFFIXES: .mpp .o
71.mpp.o:
72 $(MCOMPILE) $<
73
74
75ifneq ($(USE_CORBA), 0)
76CORBAHEADERS = \
77 corbaconv_text_t.h corbatext_t.h
78CORBASOURCES = \
79 corbaiface.mpp corbatext_t.mpp corbaconv_text_t.mpp corbaiface_skel.mpp
80CORBAOBJECTS = \
81 corbaiface.o corbatext_t.o corbaconv_text_t.o corbaiface_skel.o
82else
83CORBAHEADERS =
84CORBASOURCE =
85CORBAOBJECTS =
86endif
87
88HEADERS = \
89 cfgread.h fileutil.h gsdlunicode.h gsdltools.h text_t.h \
90 display.h gsdlconf.h gsdltimes.h cnfgable.h cnfgator.h \
91 $(CORBAHEADERS)
92
93
94SOURCES = \
95 cfgread.cpp fileutil.cpp text_t.cpp cnfgable.cpp \
96 display.cpp gsdlunicode.cpp gsdltimes.cpp gsdltools.cpp \
97 cnfgator.cpp $(CORBASOURCES)
98
99OBJECTS = \
100 cfgread.o fileutil.o text_t.o cnfgable.o \
101 display.o gsdlunicode.o gsdltimes.o gsdltools.o \
102 cnfgator.o $(CORBAOBJECTS)
103
104
105all: gsdllib.a
106
107corbaiface.mpp: corbaiface.idl
108 idl --boa --no-poa --c++-skel --c++-suffix=mpp $?
109
110GSDLLIBOBJECTS = $(OBJECTS)
111
112gsdllib.a: $(GSDLLIBOBJECTS)
113 rm -f gsdllib.a
114 $(AR) cru gsdllib.a $(GSDLLIBOBJECTS)
115 $(RANLIB) gsdllib.a
116
117clean:
118 rm -f $(OBJECTS) gsdllib.a corbaiface_skel.mpp corbaiface.h corbaiface.mpp
119
120distclean: clean
121 rm -f Makefile
122install:
123
124depend:
125 makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
126
127
128
129
Note: See TracBrowser for help on using the repository browser.