Annotation of Amaya/thotlib/Makefile.in, revision 1.123

1.1       cvs         1: #
                      2: # Makefile for thotlib directory
                      3: # Generated from thotlib/Makefile.in
                      4: # Daniel Veillard, 1997
                      5: #
                      6: 
1.64      gully       7: .SUFFIXES: .cpp .c .o ND.o
1.1       cvs         8: 
                      9: @VPATHOPT@= @srcdir@
                     10: THOTDIR = @top_srcdir@
1.57      vatton     11: THOTINCLUDES=@THOTINCLUDES@
1.3       cvs        12: 
                     13: include ../Options
                     14: 
1.77      gully      15: INCLUDES= -DHAVE_CONFIG_H -I.. -I@top_srcdir@/amaya/xpm ${THOTINCLUDES} $(GUI_INCLUDES) $(GL_INCLUDES) $(GTK_GL_INCLUDES) $(XFT_INCLUDES) $(FREETYPE_INCLUDES) ${EXTRA_INCLUDES}
1.116     vatton     16: LIBS   = -L. -L.. @LIBS@ $(IMGLIBS) $(GL_LIBRARIES) $(GTK_GL_LIBRARIES) $(XFT_LIBRARIES) $(FREETYPE_LIBRARIES) $(GTK_LIBRARIES) $(WX_LIBRARIES)
1.1       cvs        17: 
                     18: prefix = @prefix@
                     19: exec_prefix = @exec_prefix@
                     20: libdir = @libdir@
1.7       cvs        21: bindir = @bindir@
1.8       cvs        22: MACHINE= @target@
1.1       cvs        23: 
                     24: SUBDIRS = include
1.31      cvs        25: OBJDIRS = base content dialogue document editing image presentation tree unicode view
1.1       cvs        26: 
                     27: @SET_MAKE@
                     28: 
                     29: #
                     30: # Rule to build standard objects
                     31: #
                     32: .c.o :
1.65      gully      33:        $(CXX) $(CXXFLAGS) $(THOT_OPTIONS) $(INCLUDES) -c $< -o $@
1.64      gully      34: 
                     35: #
                     36: # Rule to build c++ files
                     37: #
                     38: .cpp.o :
                     39:        $(CXX) $(CXXFLAGS) $(THOT_OPTIONS) $(INCLUDES) -c $< -o $@
1.1       cvs        40: 
                     41: #
                     42: # Rule to build specific objects for libThotKernel.a
                     43: #
                     44: .cND.o :
1.65      gully      45:        $(CXX) $(CXXFLAGS) $(THOT_OPTIONS) $(INCLUDES) -DNODISPLAY -c $< -o $@
1.1       cvs        46: 
1.28      cvs        47: all : directories libThotKernel.a libThotEditor.a
1.1       cvs        48: 
                     49: clean :
                     50:        $(RM) libThotKernel.a libThotEditor.a
1.9       cvs        51:        (for dir in $(OBJDIRS) ; do $(RM) -r $$dir/*.o ; done)
1.1       cvs        52: 
1.12      cvs        53: install :
1.7       cvs        54: 
                     55: uninstall:
1.1       cvs        56: 
                     57: directories :
                     58:        @(for dir in $(OBJDIRS) ; \
                     59:          do if test ! -d $$dir ; then $(MKDIR) $$dir ; fi ; done)
                     60: 
                     61: force :
                     62: 
1.28      cvs        63: ../amaya/libCSS.a : force
1.65      gully      64:        @(cd ../amaya ; $(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)"  CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" libCSS)
1.28      cvs        65: 
1.1       cvs        66: include .depends
                     67: 
                     68: ../tools/mkdep/mkdep : 
1.65      gully      69:        @(cd ../tools/mkdep ; $(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)" CXX="$(CXX)" CXXFLAGS="$(CXXFLAGS)" )
1.1       cvs        70: 
                     71: .depends depend : ../tools/mkdep/mkdep
1.78      gully      72:        ../tools/mkdep/mkdep -relative -vpath $(VPATH) $(INCLUDES) $(VPATH)/*/*.c $(VPATH)/*/*.cpp  > .depends
1.1       cvs        73: 
                     74: #########################################################################
                     75: #                                                                      #
                     76: #              Rules to build the main libraries                       #
                     77: #                                                                      #
                     78: #########################################################################
                     79: 
                     80: THOTK_OBJ = \
1.92      gully      81:        base/AmayaAppInstance.o \
1.103     gully      82:        base/AmayaLogDebug.o \
1.81      gully      83:        base/wxAmayaTimer.o \
1.87      gully      84:        base/wxAmayaSocketEvent.o \
                     85:        base/wxAmayaSocketEventLoop.o \
1.64      gully      86:        base/global.o \
1.1       cvs        87:        base/memory.o \
                     88:        base/message.o \
                     89:        base/platform.o \
                     90:        base/registry.o \
1.82      gully      91:        base/registry_wx.o \
                     92:        base/message_wx.o \
1.1       cvs        93:        base/actions.o \
                     94:        base/units.o \
1.102     gully      95:        base/logdebug.o \
1.105     gully      96:        base/testcase.o \
1.1       cvs        97:        document/externalref.o \
                     98:        document/language.o \
                     99:        document/readprs.o \
                    100:        document/readstr.o \
                    101:        document/readtra.o \
                    102:        document/schtrad.o \
1.84      vatton    103:        document/writeprs.o \
                    104:        document/writestr.o \
1.1       cvs       105:        tree/exceptions.o \
                    106:        tree/tree.o \
                    107:        tree/checkaccess.o \
1.15      cvs       108:        tree/labelalloc.o \
1.19      cvs       109:        unicode/uconvert.o \
1.42      cvs       110:        unicode/ustring.o
1.1       cvs       111: 
                    112: KERNEL_OBJ = \
1.119     vatton    113:        base/AmayaApp.o \
1.1       cvs       114:        base/batchmessage.o \
1.90      vatton    115:        base/fileaccessND.o \
1.28      cvs       116:        base/structlist.o \
1.1       cvs       117:        content/contentapiND.o \
                    118:        content/contentND.o \
                    119:        dialogue/nodisplay.o \
                    120:        document/documentapiND.o \
1.60      vatton    121:        document/readpivot.o \
1.38      cvs       122:        document/schemasND.o \
1.60      vatton    123:        document/writepivotND.o \
1.1       cvs       124:        editing/applicationapiND.o \
                    125:        presentation/presentationapiND.o \
                    126:        tree/attributeapiND.o \
1.28      cvs       127:        tree/references.o \
1.1       cvs       128:        tree/referenceapiND.o \
1.28      cvs       129:        tree/structschema.o \
1.15      cvs       130:        tree/treeapiND.o 
1.1       cvs       131: 
1.28      cvs       132: DISPLAY_OBJ = \
1.90      vatton    133:        base/fileaccess.o \
1.28      cvs       134:        content/content.o \
                    135:        content/dictionary.o \
1.53      cheyroul  136:        image/encdec.o \
1.48      cheyroul  137:        dialogue/fontserver.o \
1.52      cheyroul  138:        dialogue/fontconfig.o \
1.28      cvs       139:        dialogue/font.o \
1.51      cheyroul  140:        dialogue/stix.o \
1.28      cvs       141:        document/documentapi.o \
                    142:        document/readpivot.o \
                    143:        document/schemas.o \
1.36      cvs       144:        document/translation.o \
1.28      cvs       145:        editing/applicationapi.o \
                    146:        image/abspictures.o \
1.1       cvs       147:        image/epshandler.o \
1.28      cvs       148:        image/gifhandler.o \
1.1       cvs       149:        image/jpeghandler.o \
                    150:        image/picture.o \
1.28      cvs       151:        image/pnghandler.o \
1.1       cvs       152:        image/xpmhandler.o \
1.24      cvs       153:        presentation/attrpresent.o \
1.1       cvs       154:        presentation/changepresent.o \
1.28      cvs       155:        presentation/presrules.o \
1.1       cvs       156:        presentation/presvariables.o \
                    157:        presentation/pschemaapi.o \
1.24      cvs       158:        presentation/style.o \
1.28      cvs       159:        tree/attributes.o \
1.1       cvs       160:        tree/pagecommands.o \
1.28      cvs       161:        tree/references.o \
                    162:        tree/structschema.o \
1.1       cvs       163:        view/absboxes.o \
                    164:        view/boxmoves.o \
                    165:        view/boxpositions.o \
                    166:        view/boxrelations.o \
                    167:        view/buildboxes.o \
                    168:        view/buildlines.o \
                    169:        view/changeabsbox.o \
                    170:        view/createabsbox.o \
                    171:        view/createpages.o \
1.28      cvs       172:        view/displaybox.o \
                    173:        view/displayview.o \
1.1       cvs       174:        view/frame.o \
1.62      cheyroul  175:        view/hyphen.o \
1.117     kia       176:        view/tesse.o \
1.62      cheyroul  177:        view/glgradient.o \
                    178:        dialogue/glglyph.o \
                    179:        dialogue/openglfont.o \
1.63      cheyroul  180:        view/glwindowdisplay.o \
                    181:        view/gldisplay.o \
                    182:        view/spline.o
1.1       cvs       183: 
1.28      cvs       184: EDITOR_OBJ = \
1.119     vatton    185:        base/AmayaApp.o \
1.28      cvs       186:        base/alloca.o \
                    187:        base/config.o \
1.117     kia       188:        base/containers.o \
1.28      cvs       189:        base/thotmsg.o \
                    190:        base/structlist.o \
                    191:        content/contentapi.o \
                    192:        content/search.o \
                    193:        content/searchref.o \
                    194:        content/word.o \
1.109     gully     195:        dialogue/AmayaStatusBar.o \
1.108     gully     196:        dialogue/AmayaConfirmCloseTab.o \
1.106     gully     197:        dialogue/AmayaAddPointEvtHandler.o \
1.110     gully     198:        dialogue/AmayaMovePointEvtHandler.o \
1.107     gully     199:        dialogue/AmayaMovingBoxEvtHandler.o \
1.111     gully     200:        dialogue/AmayaResizingBoxEvtHandler.o \
1.87      gully     201:        dialogue/AmayaDialog.o \
1.68      gully     202:        dialogue/AmayaWindow.o \
1.94      gully     203:        dialogue/AmayaWindowIterator.o \
1.80      gully     204:        dialogue/AmayaSimpleWindow.o \
                    205:        dialogue/AmayaNormalWindow.o \
1.123   ! kia       206:        dialogue/AmayaClassicWindow.o \
        !           207:        dialogue/AmayaAdvancedWindow.o \
1.86      gully     208:        dialogue/AmayaQuickSplitButton.o \
1.68      gully     209:        dialogue/AmayaPanel.o \
1.88      gully     210:        dialogue/AmayaPopupList.o \
1.95      gully     211:        dialogue/AmayaApplyClassPanel.o \
1.86      gully     212:        dialogue/AmayaXHTMLPanel.o \
1.121     vatton    213:        dialogue/AmayaStylePanel.o \
1.115     kia       214:        dialogue/AmayaExplorerPanel.o \
1.91      gully     215:        dialogue/AmayaAttributePanel.o \
1.97      gully     216:        dialogue/AmayaMathMLPanel.o \
1.98      vatton    217:        dialogue/AmayaXMLPanel.o \
1.68      gully     218:        dialogue/AmayaPage.o \
1.66      gully     219:        dialogue/AmayaFrame.o \
1.68      gully     220:        dialogue/AmayaCanvas.o \
1.122     kia       221:        dialogue/AmayaColorButton.o \
1.69      gully     222:        dialogue/AmayaNotebook.o \
1.72      gully     223:        dialogue/AmayaToolBar.o \
1.83      gully     224:        dialogue/AmayaScrollBar.o \
1.99      gully     225:        dialogue/AmayaFileDropTarget.o \
1.100     gully     226:        dialogue/AmayaSpeCharPanel.o \
1.104     gully     227:        dialogue/AmayaStatsThread.o \
1.117     kia       228:        dialogue/AmayaPathControl.o \
1.68      gully     229:        dialogue/appdialogue_wx.o \
1.105     gully     230:        dialogue/callback.o\
                    231:        dialogue/callbackinit.o \
                    232:        dialogue/appdialogue.o \
                    233:        dialogue/appli.o \
                    234:        dialogue/attrmenu.o \
1.118     kia       235:        dialogue/base64.o \
1.105     gully     236:        dialogue/browser.o \
                    237:        dialogue/closedoc.o \
                    238:        dialogue/colors.o \
                    239:        dialogue/context.o \
                    240:        dialogue/creationmenu.o \
                    241:        dialogue/dialogapi.o \
1.118     kia       242:        dialogue/email.o \
1.117     kia       243:        dialogue/Elemlist.o \
1.105     gully     244:        dialogue/geom.o \
                    245:        dialogue/input.o \
                    246:        dialogue/interface.o \
                    247:        dialogue/keyboards.o \
                    248:        dialogue/modiftype.o \
                    249:        dialogue/profiles.o \
                    250:        dialogue/presentmenu.o \
                    251:        dialogue/printmenu.o \
                    252:        dialogue/searchmenu.o \
                    253:        dialogue/selectmenu.o \
1.118     kia       254:        dialogue/SMTP.o \
1.28      cvs       255:        document/docs.o \
1.1       cvs       256:        document/views.o \
1.15      cvs       257:        document/writedoc.o \
1.1       cvs       258:        document/writepivot.o \
                    259:        editing/checkermenu.o \
                    260:        editing/editcommands.o \
1.28      cvs       261:        editing/scroll.o \
                    262:        editing/spellchecker.o \
1.1       cvs       263:        editing/selectionapi.o \
                    264:        editing/structcommands.o \
                    265:        editing/structcreation.o \
                    266:        editing/structmodif.o \
                    267:        editing/structselect.o \
                    268:        editing/textcommands.o \
1.28      cvs       269:        editing/undo.o \
                    270:        editing/undoapi.o \
1.1       cvs       271:        editing/unstructchange.o\
1.28      cvs       272:        image/pictureapi.o \
                    273:        presentation/presentationapi.o \
                    274:        tree/attributeapi.o \
                    275:        tree/paginate.o \
                    276:        tree/referenceapi.o \
                    277:        tree/res.o \
                    278:        tree/resmatch.o \
                    279:        tree/resgen.o \
                    280:        tree/treeapi.o \
1.67      vatton    281:        view/animbox.o \
1.1       cvs       282:        view/boxlocate.o \
1.28      cvs       283:        view/boxparams.o \
1.1       cvs       284:        view/boxselection.o \
                    285:        view/displayselect.o \
1.67      vatton    286:        view/glbox.o \
                    287:        view/gltimer.o \
1.28      cvs       288:        view/inites.o \
1.67      vatton    289:        view/tableH.o \
1.1       cvs       290:        view/unstructlocate.o\
1.28      cvs       291:        view/viewapi.o \
1.67      vatton    292:        view/xwindowdisplay.o
1.1       cvs       293: 
                    294: base/registry.o : @srcdir@/base/registry.c
1.65      gully     295:        $(CXX) $(CXXFLAGS) $(THOT_OPTIONS) $(INCLUDES) \
1.45      kahan     296:           -DCOMPILED_IN_THOTDIR=\"@top_srcdir@\" \
1.17      cvs       297:           -DCOMPILED_IN_THOTDIR2=\"@prefix@/thot\" \
1.46      kahan     298:           -DNODISPLAY \
1.8       cvs       299:           -DMACHINE=\"$(MACHINE)\" -c @srcdir@/base/registry.c -o $@
1.1       cvs       300: 
1.4       cvs       301: libThotKernel : directories libThotKernel.a
                    302: 
                    303: libThotKernel.a : $(THOTK_OBJ) $(KERNEL_OBJ)
1.1       cvs       304:        $(AR) libThotKernel.a $(THOTK_OBJ) $(KERNEL_OBJ)
                    305:        $(RANLIB) libThotKernel.a
                    306:        @$(ECHO) "====>" libThotKernel is done
                    307: 
1.4       cvs       308: libThotEditor : directories libThotEditor.a
                    309: 
1.28      cvs       310: libThotEditor.a : $(THOTK_OBJ) $(DISPLAY_OBJ) $(EDITOR_OBJ)
                    311:        $(AR) libThotEditor.a $(THOTK_OBJ) $(DISPLAY_OBJ) $(EDITOR_OBJ)
1.1       cvs       312:        $(RANLIB) libThotEditor.a
                    313:        @$(ECHO) "====>" libThotEditor is done
                    314: 
                    315: #
                    316: # Rules for producing the print binary
                    317: #
                    318: 
                    319: PRINT_OBJ= \
1.119     vatton    320:        base/AmayaAppPP.o \
1.81      gully     321:        dialogue/AmayaPrintNotify.o \
1.1       cvs       322:        dialogue/nodialog.o \
                    323:        tree/paginatePP.o \
                    324:        view/initpses.o \
                    325:        view/psdisplay.o \
1.63      cheyroul  326:        view/printgl.o \
1.67      vatton    327:        view/tableH.o \
1.1       cvs       328:        editing/print.o
                    329: 
1.119     vatton    330: base/AmayaAppPP.o : @srcdir@/base/AmayaApp.cpp @srcdir@/include/thot_sys.h
                    331:        $(CXX) $(CXXFLAGS) $(THOT_OPTIONS) $(INCLUDES) -D_GLPRINT -c @srcdir@/base/AmayaApp.cpp -o $@
                    332: 
1.22      cvs       333: tree/paginatePP.o : @srcdir@/tree/paginate.c @srcdir@/include/thot_sys.h
1.65      gully     334:        $(CXX) $(CXXFLAGS) $(THOT_OPTIONS) $(INCLUDES) -DPAGINEETIMPRIME -c @srcdir@/tree/paginate.c -o $@
1.1       cvs       335: 
1.14      cvs       336: print : ../bin ../bin/print
                    337: 
                    338: ../bin :
                    339:        @(mkdir ../bin)
1.1       cvs       340: 
1.67      vatton    341: ../bin/print : $(THOTK_OBJ) $(DISPLAY_OBJ) $(PRINT_OBJ) \
1.35      cvs       342:         ../amaya/libCSS.a
1.67      vatton    343:        $(CXX) $(LDFLAGS) -o $@ $(THOTK_OBJ) $(DISPLAY_OBJ) $(PRINT_OBJ) ../amaya/libCSS.a $(LIBS)
1.1       cvs       344:        @$(ECHO) "====>" print is done
                    345: 
1.6       cvs       346: CEXTRACT= ../bin/cextract
                    347: 
                    348: $(CEXTRACT) :
1.10      cvs       349:        @(cd ../tools/cextract-$(CEXTRACT_VER) ; $(MAKE) )
1.6       cvs       350: 
                    351: proto : ../bin/cextract
                    352:        @(for i in @srcdir@/*/*.c ; \
                    353:          do \
                    354:          dir=`dirname $$i`;base=`basename $$i .c`; \
                    355:          dir="$$dir/../internals" ; \
                    356:          if [ ! -d $$dir/f ] ; then $(MKDIR) $$dir/f ;fi;\
                    357:          $(CEXTRACT) $(CEXTRACT_FLAGS) -o /tmp/cextract.$$base.$$$$ $$i 2> /dev/null ; \
                    358:          if [ -f $$dir/f/"$$base"_f.h ] ; \
                    359:          then \
                    360:              delta=`$(DIFF) /tmp/cextract.$$base.$$$$ $$dir/f/"$$base"_f.h` ; \
                    361:              if [ "$$delta" != "" ] ; \
                    362:              then \
                    363:                  echo "  $$i proto changed" ; \
                    364:                  $(MV) /tmp/cextract.$$base.$$$$ $$dir/f/"$$base"_f.h ; \
                    365:               else \
                    366:                  $(RM) /tmp/cextract.$$base.$$$$ ; \
                    367:              fi ; \
                    368:          else \
                    369:              echo "  $$i proto added" ; \
                    370:              $(MV) /tmp/cextract.$$base.$$$$ $$dir/f/"$$base"_f.h ; \
                    371:          fi ; \
                    372:         done)
                    373: 

Webmaster