Ignore:
Timestamp:
1999-09-09T16:05:22+12:00 (25 years ago)
Author:
sjboddie
Message:

more configure stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/colservr/Makefile.in

    r556 r558  
    11###########################################################################
    22#
    3 # Makefile --
     3# Makefile -- src/colservr
     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#
    48# Copyright (C) 1999  The New Zealand Digital Library Project
    59#
    6 # PUT COPYRIGHT NOTICE HERE
     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.
    724#
    825###########################################################################
     
    1128AR = ar
    1229CC = @CC@
    13 CCFLAGS = @CFLAGS@ -Wall -Wunused -pedantic -W
    14 DEFS = -DNZDL -DQUIET -DSHORT_SUFFIX -DPARADOCNUM -DGSDLSERVER @DEFS@
    15 INCLUDES = -I../../lib -I../../packages/mg -I../../packages/mg/lib \
    16            -I../../packages/mg/src/text -I../recpt
     30CCFLAGS = @CFLAGS@ -Wall -Wunused -pedantic -W -Woverloaded-virtual # -Wshadow
     31DEFS = -DNZDL -DQUIET -DSHORT_SUFFIX -DPARADOCNUM -DGSDLSERVER -DLITTLE_ENDIAN @DEFS@
     32INCLUDES = -I../../lib -I../recpt -I../../packages/mg \
     33       -I../../packages/mg/lib -I../../packages/mg/src/text
    1734ifeq ($(USE_FASTCGI), 1)
    1835INCLUDES = $(INCLUDES) -I../../packages/fcgi/include
     
    2037RANLIB = @RANLIB@
    2138LDFLAGS = @LDFLAGS@
    22 LIBS = -lg++ -lgdbm -lm -lcrypt
     39LIBS = -lgdbm -lstdc++ -lm #-lcrypt
    2340
    24 GSDLOS = linux
     41GSDLOS = @gsdlos@
    2542
    2643
     
    3754    $(COMPILE) $<
    3855
    39 
    40 #HEADERS = collectserver.h
    4156HEADERS = mgq.h mgsearch.h querycache.h queryinfo.h collectserver.h \
    4257          colservrconfig.h maptools.h filter.h source.h browsefilter.h \
    4358          queryfilter.h mggdbmsource.h phrasesearch.h phrasequeryfilter.h
    4459
    45 #SOURCES = collectserver.cpp
    4660SOURCES = mgq.c mgsearch.cpp querycache.cpp queryinfo.cpp collectserver.cpp \
    4761          colservrconfig.cpp maptools.cpp filter.cpp source.cpp \
     
    4963          phrasequeryfilter.cpp
    5064
    51 #OBJECTS = collectserver.o
    5265OBJECTS = mgq.o mgsearch.o querycache.o queryinfo.o collectserver.o \
    5366          colservrconfig.o maptools.o filter.o source.o browsefilter.o \
    5467          queryfilter.o mggdbmsource.o phrasesearch.o phrasequeryfilter.o
    55 
    56 #EXEC    = collectserver.o
    5768
    5869all : $(OBJECTS)
     
    6576depend:
    6677    makedepend -Y -- $(DEFS) $(INCLUDES) $(CCFLAGS) -- $(SOURCES)
    67 
    68 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
    69 
    70 RECPT_OBJS = $(OBJECTS) \
    71     ../../lib/gsdllib.a  \
    72     ../../packages/mg/src/text/libtextin.a \
    73     ../../packages/mg/lib/libmg.a \
    74     ../../packages/fcgi/libfcgi/libfcgi.a
    75 
    76 recpt: $(RECPT_OBJS)
    77     $(LINK) $(RECPT_OBJS) $(LIBS)
Note: See TracChangeset for help on using the changeset viewer.