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

Last change on this file since 2907 was 2907, checked in by say1, 22 years ago

minor makefile fixes for corbaserver

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.6 KB
RevLine 
[1076]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@
[1860]30CPP = @CXX@
[1283]31#CCFLAGS = @CFLAGS@ -Wall -Wunused -pedantic -W -Woverloaded-virtual
32CCFLAGS = @CFLAGS@
[2113]33MCFLAGS = -Wall -Wunused
[1076]34DEFS = @DEFS@
[1860]35INCLUDES = -I../packages/mg/lib -I..
36MICO_DIR = @MICO_DIR@
37ifeq ($(MICO_DIR), default)
[2173]38MICO_INC = -I../packages/mico/mico/include
39MICO_PATH = ../bin/linux/
[1860]40else
41ifeq ($(MICO_DIR), yes)
42MICO_INC =
43else
44MICO_INC = -I$(MICO_DIR)
45endif
[2173]46MICO_PATH =
[1860]47endif
[2173]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..
[1076]49RANLIB = @RANLIB@
[1860]50USE_CORBA = @USE_CORBA@
[1076]51
52COMPILE = $(CC) -c $(CCFLAGS) $(DEFS) $(INCLUDES)
[1860]53CPPCOMPILE = $(CPP) -c $(CCFLAGS) $(DEFS) $(INCLUDES)
[1076]54
[1860]55ifneq ($(USE_CORBA), 0)
[2173]56MCOMPILE = $(MICO_PATH)mico-c++ -x c++ $(MCFLAGS) $(DEFS) $(MINCLUDES) -c
[1860]57else
58MCOMPILE = $(COMPILE)
59endif
60
[1076]61.SUFFIXES:
62.SUFFIXES: .c .o
63.c.o:
64 $(COMPILE) $<
65
66.SUFFIXES: .cpp .o
67.cpp.o:
[1860]68 $(CPPCOMPILE) $<
[1076]69
[1860]70.SUFFIXES: .mpp .o
71.mpp.o:
72 $(MCOMPILE) $<
[1076]73
[1860]74
[2233]75
76
[1860]77ifneq ($(USE_CORBA), 0)
78CORBAHEADERS = \
79 corbaconv_text_t.h corbatext_t.h
80CORBASOURCES = \
[2173]81 corbaiface.mpp corbatext_t.mpp corbaconv_text_t.mpp corbaiface_skel.mpp
[1860]82CORBAOBJECTS = \
[2175]83 corbaiface.o corbatext_t.o corbaconv_text_t.o corbaiface_skel.o
[1860]84else
85CORBAHEADERS =
86CORBASOURCE =
87CORBAOBJECTS =
88endif
89
[1076]90HEADERS = \
[1860]91 cfgread.h fileutil.h gsdlunicode.h gsdltools.h text_t.h \
92 display.h gsdlconf.h gsdltimes.h cnfgable.h cnfgator.h \
93 $(CORBAHEADERS)
[1076]94
[1860]95
[1076]96SOURCES = \
[1860]97 cfgread.cpp fileutil.cpp text_t.cpp cnfgable.cpp \
98 display.cpp gsdlunicode.cpp gsdltimes.cpp gsdltools.cpp \
99 cnfgator.cpp $(CORBASOURCES)
[1076]100
101OBJECTS = \
[1860]102 cfgread.o fileutil.o text_t.o cnfgable.o \
103 display.o gsdlunicode.o gsdltimes.o gsdltools.o \
104 cnfgator.o $(CORBAOBJECTS)
[1076]105
106
107all: gsdllib.a
[2233]108corbaiface_skel.h: corbaiface.idl
[2907]109 LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH PATH=$(MICO_PATH):$(PATH) idl --boa --no-poa --c++-skel --c++-suffix=mpp $?
[2233]110corbaiface_skel.mpp: corbaiface.idl
[2907]111 LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH PATH=$(MICO_PATH):$(PATH) idl --boa --no-poa --c++-skel --c++-suffix=mpp $?
[1860]112corbaiface.mpp: corbaiface.idl
[2907]113 LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH PATH=$(MICO_PATH):$(PATH) idl --boa --no-poa --c++-skel --c++-suffix=mpp $?
[1076]114
115GSDLLIBOBJECTS = $(OBJECTS)
116
117gsdllib.a: $(GSDLLIBOBJECTS)
118 rm -f gsdllib.a
119 $(AR) cru gsdllib.a $(GSDLLIBOBJECTS)
120 $(RANLIB) gsdllib.a
121
122clean:
[2173]123 rm -f $(OBJECTS) gsdllib.a corbaiface_skel.mpp corbaiface.h corbaiface.mpp
[1076]124
[1939]125distclean: clean
126 rm -f Makefile
[1076]127install:
128
129depend:
130 makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
[1860]131
132
133
134
Note: See TracBrowser for help on using the repository browser.