source: main/tags/3.01-src/gs2build-extra/lib.Makefile.in@ 33217

Last change on this file since 33217 was 9758, checked in by kjdon, 19 years ago

got rid of the corba and mico stuff

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 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@
33DEFS = @DEFS@
34INCLUDES = -I../packages/mg/lib -I..
35RANLIB = @RANLIB@
36
37COMPILE = $(CC) -c $(CCFLAGS) $(DEFS) $(INCLUDES)
38CPPCOMPILE = $(CPP) -c $(CCFLAGS) $(DEFS) $(INCLUDES)
39
40.SUFFIXES:
41.SUFFIXES: .c .o
42.c.o:
43 $(COMPILE) $<
44
45.SUFFIXES: .cpp .o
46.cpp.o:
47 $(CPPCOMPILE) $<
48
49HEADERS = \
50 text_t.h gsdlconf.h
51
52SOURCES = \
53 text_t.cpp
54
55OBJECTS = \
56 text_t.o
57
58
59all: gsdllib.a
60
61GSDLLIBOBJECTS = $(OBJECTS)
62
63gsdllib.a: $(GSDLLIBOBJECTS)
64 rm -f gsdllib.a
65 $(AR) cru gsdllib.a $(GSDLLIBOBJECTS)
66 $(RANLIB) gsdllib.a
67
68clean:
69 rm -f $(OBJECTS) gsdllib.a
70
71distclean: clean
72 rm -f Makefile
73install:
74
75depend:
76 makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
77
78
79
80
Note: See TracBrowser for help on using the repository browser.