Changeset 7419 for trunk/indexers/mg


Ignore:
Timestamp:
2004-05-25T12:02:31+12:00 (20 years ago)
Author:
kjdon
Message:

new executable, gs3_mg_passes, and new library libmgpass.a - for use of mg_passes inside jni

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/indexers/mg/src/text/Makefile.in

    r7227 r7419  
    127127  ivf.pass2.c             mg_text_estimate.c      text_get.c           \
    128128  lists.c                 mg_text_merge.c         weights.c            \
    129   query_term_list.c       words.c
     129  query_term_list.c       words.c                 gs3_mg_passes.c
    130130
    131131HEADERS = \
     
    151151                mg_compression_dict mg_text_estimate mg_fast_comp_dict \
    152152                mg_hilite_words mg_invf_merge mg_text_merge bool_tester \
    153                 mg_stem_idx mgstemidxlist mg_decompress_text
     153                mg_stem_idx mgstemidxlist mg_decompress_text gs3_mg_passes
    154154
    155155MAN           = mgquery.1 mg_weights_build.1 mgstat.1 mg_invf_dump.1 mg_invf_dict.1 \
     
    162162
    163163
    164 all:    $(EXEC) libtextin.a
     164all:    $(EXEC) libtextin.a libmgpass.a
    165165
    166166
     
    222222mg_passes: $(PASSES_OBJS)
    223223    $(LINK) $(PASSES_OBJS) $(LIBS)
     224
     225# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
     226
     227GS3_PASSES_OBJS = \
     228    gs3_mg_passes$o text.pass1$o comp_dict$o stemmer$o \
     229    text.pass2$o locallib$o \
     230    ivf.pass1$o ivf.pass2$o mg.special$o mg_files$o \
     231    words$o environment$o
     232
     233gs3_mg_passes: $(GS3_PASSES_OBJS)
     234    $(LINK) $(GS3_PASSES_OBJS) $(LIBS)
    224235
    225236# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
     
    352363    $(RANLIB) libtextin.a
    353364
     365JNI_LIB_OBJS = \
     366    gs3_mg_passes$o text.pass1$o comp_dict$o stemmer$o \
     367    text.pass2$o locallib$o  words$o environment$o\
     368    ivf.pass1$o ivf.pass2$o mg.special$o mg_files$o
     369
     370libmgpass.a: $(JNI_LIB_OBJS)
     371    rm -f libmgpass.a
     372    $(AR) cru libmgpass.a $(JNI_LIB_OBJS)
     373    $(RANLIB) libmgpass.a
     374
    354375mostlyclean:
    355376    rm -f *$o _*.c _*.o *._c *._o core core.*
    356377 
    357378clean: mostlyclean
    358     rm -f $(EXEC) libtextin.a
     379    rm -f $(EXEC) libtextin.a libmgpass.a
    359380 
    360381distclean: clean
Note: See TracChangeset for help on using the changeset viewer.