Ignore:
Timestamp:
2009-03-25T14:34:39+13:00 (15 years ago)
Author:
kjdon
Message:

we want to call the gs2 targets for common-src instead of the standard all/install

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gsdl/trunk/Makefile.in

    r18698 r18802  
    4747ALLFILES = $(OBJECTS)
    4848
     49SPECIAL_COMPILEDIRS = common-src
     50COMPILEDIRS = build-src runtime-src
    4951
    50 COMPILEDIRS = common-src build-src runtime-src
    51 
    52 INSTALLDIRS = common-src build-src runtime-src
     52SPECIAL_INSTALLDIRS = common-src
     53INSTALLDIRS = build-src runtime-src
    5354
    5455MODULEDIRS = @MODULEDIRS@
     
    5758# we don't want to compile the jni stuff in indexers for gs2
    5859all:
     60    for odir in $(SPECIAL_COMPILEDIRS); do \
     61    echo making gs2 in $$odir; \
     62    (cd $$odir && $(MAKE) $(MDEFINES) gs2) || exit 1; \
     63    done
    5964    for odir in $(COMPILEDIRS) $(MODULEDIRS); do \
    6065      echo making $@ in $$odir; \
     
    6267    done
    6368
    64 install: all
     69install:
     70    for idir in $(SPECIAL_INSTALLDIRS); do \
     71      echo installing $$idir; \
     72      (cd $$idir && $(MAKE) install-gs2) || exit 1; \
     73    done
    6574    for idir in $(INSTALLDIRS); do \
    6675      echo installing $$idir; \
Note: See TracChangeset for help on using the changeset viewer.