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

Last change on this file since 2233 was 2233, checked in by say1, 23 years ago

added dependances to makefile

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.4 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
75
76
77ifneq ($(USE_CORBA), 0)
78CORBAHEADERS = \
79 corbaconv_text_t.h corbatext_t.h
80CORBASOURCES = \
81 corbaiface.mpp corbatext_t.mpp corbaconv_text_t.mpp corbaiface_skel.mpp
82CORBAOBJECTS = \
83 corbaiface.o corbatext_t.o corbaconv_text_t.o corbaiface_skel.o
84else
85CORBAHEADERS =
86CORBASOURCE =
87CORBAOBJECTS =
88endif
89
90HEADERS = \
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)
94
95
96SOURCES = \
97 cfgread.cpp fileutil.cpp text_t.cpp cnfgable.cpp \
98 display.cpp gsdlunicode.cpp gsdltimes.cpp gsdltools.cpp \
99 cnfgator.cpp $(CORBASOURCES)
100
101OBJECTS = \
102 cfgread.o fileutil.o text_t.o cnfgable.o \
103 display.o gsdlunicode.o gsdltimes.o gsdltools.o \
104 cnfgator.o $(CORBAOBJECTS)
105
106
107all: gsdllib.a
108corbaiface_skel.h: corbaiface.idl
109 idl --boa --no-poa --c++-skel --c++-suffix=mpp $?
110corbaiface_skel.mpp: corbaiface.idl
111 idl --boa --no-poa --c++-skel --c++-suffix=mpp $?
112corbaiface.mpp: corbaiface.idl
113 idl --boa --no-poa --c++-skel --c++-suffix=mpp $?
114
115GSDLLIBOBJECTS = $(OBJECTS)
116
117gsdllib.a: $(GSDLLIBOBJECTS)
118 rm -f gsdllib.a
119 $(AR) cru gsdllib.a $(GSDLLIBOBJECTS)
120 $(RANLIB) gsdllib.a
121
122clean:
123 rm -f $(OBJECTS) gsdllib.a corbaiface_skel.mpp corbaiface.h corbaiface.mpp
124
125distclean: clean
126 rm -f Makefile
127install:
128
129depend:
130 makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
131
132
133
134
Note: See TracBrowser for help on using the repository browser.