Changeset 559 for trunk/gsdl/Makefile.in


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

more configure stuff

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/Makefile.in

    r555 r559  
     1###########################################################################
     2#
     3# Makefile -- gsdl
     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
    127PACKAGE = @PACKAGE@
    228VERSION = @VERSION@
     
    1844ALLFILES = $(OBJECTS)
    1945
    20 SUBDIRS = lib src/colservr src/db2txt src/hashfile src/recpt src/txt2db \
    21           collect/cstr/src/recpt collect/niupepa/src/recpt
     46INSTALLDIRS = src/txt2db src/db2txt src/hashfile
     47
     48OTHERDIRS = lib src/colservr src/recpt collect/cstr/src/recpt collect/niupepa/src/recpt
    2249
    2350all:
    2451    sed s^XXXX^$(TOPSRC)^ lib/gsdlhome.h.example > lib/gsdlhome.h
    25     for subdir in $(SUBDIRS); do \
    26       echo making $@ in $$subdir; \
    27       (cd $$subdir && $(MAKE) $(MDEFINES) $@) || exit 1; \
     52
     53    for odir in $(OTHERDIRS); do \
     54      echo making $@ in $$odir; \
     55      (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
     56    done
     57
     58    for idir in $(INSTALLDIRS); do \
     59      echo making $@ in $$idir; \
     60      (cd $$idir && $(MAKE) $(MDEFINES) $@) || exit 1; \
     61      echo installing $$idir; \
     62      (cd $$idir && $(MAKE) install) || exit 1; \
    2863    done
    2964
    3065clean:
    3166    rm lib/gsdlhome.h
    32     for subdir in $(SUBDIRS); do \
     67    for subdir in $(INSTALLDIRS) $(OTHERDIRS); do \
    3368      echo cleaning $@ in $$subdir; \
    3469      (cd $$subdir && $(MAKE) clean) || exit 1; \
Note: See TracChangeset for help on using the changeset viewer.