Changeset 13765


Ignore:
Timestamp:
2007-01-24T09:51:45+13:00 (17 years ago)
Author:
kjdon
Message:

changed OTHERDIRS to COMPILEDIRS and added all the common ones back in - need to compile in a certain order so can't just compile others then install ones

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/changing-indexers-branch/gsdl/Makefile.in

    r13723 r13765  
    4747ALLFILES = $(OBJECTS)
    4848
     49# indexers are treated slightly differently as we don't want to do make all/install
    4950INDEXERSDIR = indexers
    50 INSTALLDIRS = packages src/recpt src/txt2db src/db2txt src/hashfile src/getpw src/phind/generate packages src/oaiservr
     51# all directories to be compiled
     52COMPILEDIRS = packages lib src/txt2db src/db2txt src/hashfile src/getpw src/phind/generate src/colservr src/recpt src/oaiservr
     53# a subset of the directories get installed
     54INSTALLDIRS = packages src/recpt src/txt2db src/db2txt src/hashfile src/getpw src/phind/generate src/oaiservr
    5155
    5256MODULEDIRS = @MODULEDIRS@
    5357
    54 OTHERDIRS = lib src/colservr
    5558
    5659# we don't want to compile the java stuff in indexers for gs2
     
    6063      (cd $$odir && $(MAKE) $(MDEFINES) nojava) || exit 1; \
    6164    done
    62     for odir in $(OTHERDIRS) $(INSTALLDIRS) $(MODULEDIRS); do \
     65    for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
    6366      echo making $@ in $$odir; \
    6467      (cd $$odir && $(MAKE) $(MDEFINES) $@) || exit 1; \
     
    8083distclean: clean
    8184    rm -f Makefile config.cache config.h config.log stamp-h config.status
    82     for subdir in $(INSTALLDIRS) $(OTHERDIRS); do \
     85    for subdir in $(COMPILEDIRS); do \
    8386      echo cleaning $@ in $$subdir; \
    8487      (cd $$subdir && if test -e Makefile; then $(MAKE) distclean;fi) || exit 1; \
     
    8689
    8790clean:
    88     for subdir in $(INSTALLDIRS) $(OTHERDIRS); do \
     91    for subdir in $(COMPILEDIRS); do \
    8992      echo cleaning $@ in $$subdir; \
    9093      (cd $$subdir && if test -e Makefile; then $(MAKE) clean; fi) || exit 1; \
Note: See TracChangeset for help on using the changeset viewer.