home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 2 BBS / 02-BBS.zip / fsrc1241.zip / makefile < prev    next >
Makefile  |  1999-03-07  |  59KB  |  1,960 lines

  1. # MAKEFILE f. FleetStreet
  2.  
  3. # directory containing the Squish MsgAPI
  4.  
  5. MSGAPIDIR=\msgapi32
  6.  
  7. # Compiler and Linker Options for main EXE file
  8.  
  9. COPT=/Ti /Gn /Gm /Ss /Si /Q /Wdcleffgotiniobsparprorearettruusecnd- /C
  10. LOPT="/NOD /M:full /L /NOE /pmtype:pm /packd"
  11.  
  12. .SUFFIXES:
  13.  
  14. RCOMP=RC -r -n
  15. RBIND=RC -x -n
  16.  
  17. !IFDEF DEBUG
  18. CC=icc $(COPT)
  19. LOPT="/DE /NOD /M:full /L /NOE /pmtype:pm /packd"
  20. !ELSE
  21. CC=icc $(COPT) /Oc
  22. !ENDIF
  23.  
  24. # Compiler and Linker Options for DLL files
  25.  
  26. COPTDLL=/Ti /Q /Wdcleffgotiniobsparprorearettruusecnd- /Gi /Gm /Ge- /G5 /Gn /C
  27. LOPTDLL="/DE /L /M /NOD /PACKD /NOLOGO"
  28.  
  29. !IFDEF DEBUG
  30. CCDLL=icc $(COPTDLL)
  31. LOPTDLL="/L /M /NOD /PACKD /NOLOGO"
  32. !ELSE
  33. CCDLL=icc $(COPTDLL) /Oc
  34. !ENDIF
  35.  
  36. ALL: obj\fltrun.lib \
  37.      obj\fltdump.lib \
  38.      obj\fltutil.lib \
  39.      obj\flthmsg.lib \
  40.      obj\fltjam.lib \
  41.      obj\fltctls.lib \
  42.      obj\fltprint.lib \
  43.      obj\fltv7.lib \
  44.      bin\fltrun.dll \
  45.      bin\fltdump.dll \
  46.      bin\fltutil.dll \
  47.      bin\fltaman.dll \
  48.      bin\fltjam.dll \
  49.      bin\flthmsg.dll \
  50.      obj\clrsel.res \
  51.      bin\fltctls.dll \
  52.      bin\fltprint.dll \
  53.      bin\fltv7.dll \
  54.      obj\dialog.res  \
  55.      bin\fltcf_sq.dll \
  56.      bin\fltcf_fe.dll \
  57.      bin\fltcf_im.dll \
  58. #     bin\fltcf_ge.dll \
  59.      bin\fltcf_lo.dll \
  60.      bin\fltcf_fm.dll \
  61.      bin\fltcf_wm.dll \
  62.      bin\fltcf_tm.dll \
  63.      bin\fltcf_np.dll \
  64.      bin\fltcf_bb.dll \
  65.      bin\fltcf_sg.dll \
  66.      bin\testcfg.exe \
  67.      obj\main.res    \
  68.      bin\FLTSTRT.EXE \
  69.      obj\fleetlng.dll \
  70.      english \
  71.      italian \
  72.      swedish \
  73.      german \
  74.      bin\fleetcom.exe \
  75.      obj\install.res \
  76.      bin\install.exe \
  77.      bin\buildinstall.exe
  78.  
  79. CLEAN:
  80.  -@del obj\*.obj
  81.  -@del obj\*.res
  82.  -@del obj\*.lng
  83.  -@del obj\*.inf
  84.  -@del obj\*.hlp
  85.  -@del obj\*.lib
  86.  -@del bin\*.exe
  87.  -@del bin\*.dll
  88.  -@del bin\*.inf
  89.  -@del bin\*.hlp
  90.  -@del bin\*.map
  91.  
  92. BINARY: fleet.zip
  93.  
  94. fleet.zip: install.fil \
  95.            bin\install.exe \
  96.            docs\file_id.diz \
  97.            docs\readme.eng \
  98.            docs\whatsnew.eng \
  99.            docs\file_id.diz
  100.  @eautil bin\install.exe nul /s
  101.  @eautil docs\file_id.diz nul /s
  102.  @eautil docs\readme.eng  nul /s
  103.  @eautil docs\whatsnew.eng nul /s
  104.  @zip -j -9 $@ $**
  105.  
  106. install.fil : files.lst          \
  107.               bin\*.exe          \
  108.               bin\*.dll          \
  109.               obj\*.hlp          \
  110.               obj\*.lng          \
  111.               obj\*.inf          \
  112.               scripts\*.frx      \
  113.               docs\readme.txt    \
  114.               docs\readme.eng    \
  115.               docs\whatsnew.txt  \
  116.               docs\whatsnew.eng  \
  117.               docs\lizenz.txt    \
  118.               docs\license.eng
  119.  @bin\buildinstall %s
  120.  
  121. SOURCE: fsrc.zip
  122.  
  123. fsrc.zip:
  124.  @echo *.c *.h *.def *.rc makefile files.lst addons\* areaman\* bbtoss\* >pack.lst
  125.  @echo controls\* devkit\* docs\* dump\* fastecho\* fleetcom\* >>pack.lst
  126.  @echo FltV7\* FMail\* handlemsg\* imail\* install\* jamapi\* >>pack.lst
  127.  @echo Languages\* Languages\german\* Languages\english\* Languages\italian\* Languages\swedish\* >>pack.lst
  128.  @echo Lora\* NWPM\* printmsg\* Resources\* >>pack.lst
  129.  @echo runtime\* scripts\* shotgun\* SOS\* squish_cfg\* TerMail\* >>pack.lst
  130.  @echo testcfg\* tosstpl\* util\* wmail\* >>pack.lst
  131.  @echo obj bin >>pack.lst
  132.  @zip -9o -@ $@ <pack.lst
  133.  @del pack.lst
  134.  
  135. # ----------------------------------------------------------------------------
  136.  
  137. bin\fltrun.dll: \
  138.     obj\fltrun.obj \
  139.     runtime\fltrun.def
  140.  @echo Linking $@ ...
  141.  @icc /Q /B"/L /M /packd /PACKC" /Fm$*.map /Fe$@ $**
  142.  
  143. obj\fltrun.lib: runtime\fltrun.def
  144.  @implib /NOI /nologo $@ %s
  145.  @ILIB /NOLOGO $@ +\vacpp\lib\cppom30o.lib , ,
  146.  
  147. obj\fltrun.obj: runtime\fltrun.c
  148.  @echo Compiling %s ...
  149.  @icc /Ti /Q /Gm /Ge- /C /Fo$@ %s
  150.  
  151. # ----------------------------------------------------------------------------
  152.  
  153. obj\fltdump.lib: dump\fltdump.def
  154.  @implib /nologo $@ %s
  155.  
  156. bin\fltdump.dll: obj\expt.obj \
  157.                  obj\fltrun.lib \
  158.                  dump\fltdump.def
  159.  @echo Linking $@ ...
  160.  @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  161.  
  162. obj\expt.obj: dump\expt.c \
  163.               version.h \
  164.               dump\expt.h
  165.  @echo Compiling %s ...
  166.  @$(CCDLL) /Fo$@ %s
  167.  
  168. # ----------------------------------------------------------------------------
  169.  
  170. obj\FLTUTIL.LIB: util\fltutil.def
  171.  @implib /nologo $@ %s
  172.  
  173. bin\FLTUTIL.DLL:  obj\FLTUTIL.OBJ \
  174.                   obj\cnrutil.obj \
  175.                   obj\crc32.obj \
  176.                   obj\approx.obj \
  177.                   obj\addrcnv.obj \
  178.                   obj\fltrun.lib \
  179.                   util\fltutil.def
  180.  @echo Linking $@ ...
  181.  @icc /Q /B$(LOPTDLL) /Fe$@ /Fm$*.map os2386.lib $**
  182.  
  183. obj\CRC32.obj: util\CRC32.C
  184.  @echo Compiling %s ...
  185.  @$(CCDLL) /Fo$@ %s
  186.  
  187. obj\MATCH.obj: util\MATCH.C \
  188.                util\match.h
  189.  @echo Compiling %s ...
  190.  @$(CCDLL) /Fo$@ %s
  191.  
  192. obj\addrcnv.obj: util\addrcnv.c \
  193.                  main.h \
  194.                  msgheader.h \
  195.                  util\addrcnv.h
  196.  @echo Compiling %s ...
  197.  @$(CCDLL) /Fo$@ %s
  198.  
  199. obj\approx.obj: util\approx.c
  200.  @echo Compiling %s ...
  201.  @$(CCDLL) /Fo$@ %s
  202.  
  203. obj\cnrutil.obj: util\cnrutil.c
  204.  @echo Compiling %s ...
  205.  @$(CCDLL) /Fo$@ %s
  206.  
  207. obj\fltutil.obj: util\fltutil.c
  208.  @echo Compiling %s ...
  209.  @$(CCDLL) /Fo$@ %s
  210.  
  211. # ----------------------------------------------------------------------------
  212.  
  213. obj\fltaman.lib: areaman\fltaman.def
  214.  @implib /nologo $@ %s
  215.  
  216. bin\fltaman.dll: obj\areaman.obj \
  217.                  obj\folderman.obj \
  218.                  areaman\fltaman.def \
  219.                  obj\fltrun.lib
  220.  @echo Linking $@ ...
  221.  @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  222.  
  223. obj\areaman.obj: areaman\areaman.c \
  224.                  main.h \
  225.                  structs.h \
  226.                  areaman\areaman.h
  227.  @echo Compiling %s ...
  228.  @$(CCDLL) /Fo$@ %s
  229.  
  230. obj\folderman.obj: areaman\folderman.c \
  231.                    areaman\folderman.h
  232.  @echo Compiling %s ...
  233.  @$(CCDLL) /Fo$@ %s
  234.  
  235. # ----------------------------------------------------------------------------
  236.  
  237. obj\fltjam.lib: jamapi\jamapi.def
  238.  @implib /nologo $@ %s
  239.  
  240. bin\fltjam.dll: obj\jamfetch.obj obj\jamhinfo.obj obj\jamlock.obj \
  241.                 obj\jamlread.obj obj\jammbini.obj obj\jamstore.obj\
  242.                 obj\jamsys.obj   obj\jamindex.obj obj\jamapi.obj \
  243.                 jamapi\jamapi.def \
  244.                 obj\fltrun.lib \
  245.                 obj\fltutil.lib \
  246.                 obj\flthmsg.lib
  247.  @echo Linking $@ ...
  248.  @icc /Q /B$(LOPTDLL) /Fe$@ /Fm$*.map os2386.lib $**
  249.  
  250. obj\JAMFETCH.obj: jamapi\JAMFETCH.C \
  251.                   jamapi\jammb.h \
  252.                   jamapi\jam.h \
  253.                   jamapi\jamsys.h \
  254.                   jamapi\jamprot.h
  255.  @echo Compiling %s ...
  256.  @$(CCDLL) /Fo$@ %s
  257.  
  258. obj\JAMHINFO.obj: jamapi\JAMHINFO.C \
  259.                   jamapi\jammb.h \
  260.                   jamapi\jam.h \
  261.                   jamapi\jamsys.h \
  262.                   jamapi\jamprot.h
  263.  @echo Compiling %s ...
  264.  @$(CCDLL) /Fo$@ %s
  265.  
  266. obj\JAMLOCK.obj: jamapi\JAMLOCK.C \
  267.                  jamapi\jammb.h \
  268.                  jamapi\jam.h \
  269.                  jamapi\jamsys.h \
  270.                  jamapi\jamprot.h
  271.  @echo Compiling %s ...
  272.  @$(CCDLL) /Fo$@ %s
  273.  
  274. obj\JAMLREAD.obj: jamapi\JAMLREAD.C \
  275.                   jamapi\jammb.h \
  276.                   jamapi\jam.h \
  277.                   jamapi\jamsys.h \
  278.                   jamapi\jamprot.h
  279.  @echo Compiling %s ...
  280.  @$(CCDLL) /Fo$@ %s
  281.  
  282. obj\JAMMBINI.obj: jamapi\JAMMBINI.C \
  283.                   jamapi\jammb.h \
  284.                   jamapi\jam.h \
  285.                   jamapi\jamsys.h \
  286.                   jamapi\jamprot.h \
  287.                   util\crc32.h
  288.  @echo Compiling %s ...
  289.  @$(CCDLL) /Fo$@ %s
  290.  
  291. obj\JAMSTORE.obj: jamapi\JAMSTORE.C \
  292.                   jamapi\jammb.h \
  293.                   jamapi\jam.h \
  294.                   jamapi\jamsys.h \
  295.                   jamapi\jamprot.h
  296.  @echo Compiling %s ...
  297.  @$(CCDLL) /Fo$@ %s
  298.  
  299. obj\JAMSYS.obj: jamapi\JAMSYS.C \
  300.                 jamapi\jammb.h \
  301.                 jamapi\jam.h \
  302.                 jamapi\jamsys.h \
  303.                 jamapi\jamprot.h
  304.  @echo Compiling %s ...
  305.  @$(CCDLL) /Fo$@ %s
  306.  
  307. obj\jamapi.obj: jamapi\jamapi.c \
  308.                 main.h \
  309.                 structs.h \
  310.                 msgheader.h \
  311.                 areaman\areaman.h \
  312.                 handlemsg\handlemsg.h \
  313.                 handlemsg\kludgeapi.h \
  314.                 util\crc32.h \
  315.                 util\addrcnv.h \
  316.                 jamapi\jammb.h \
  317.                 jamapi\jam.h \
  318.                 jamapi\jamsys.h \
  319.                 jamapi\jamprot.h \
  320.                 jamapi\jamindex.h \
  321.                 jamapi\jamapi.h
  322.  @echo Compiling %s ...
  323.  @$(CCDLL) /Fo$@ %s
  324.  
  325. obj\jamindex.obj: jamapi\jamindex.c \
  326.                   main.h \
  327.                   structs.h \
  328.                   msgheader.h \
  329.                   jamapi\jammb.h \
  330.                   jamapi\jam.h \
  331.                   jamapi\jamsys.h \
  332.                   jamapi\jamprot.h \
  333.                   jamapi\jamindex.h
  334.  @echo Compiling %s ...
  335.  @$(CCDLL) /Fo$@ %s
  336.  
  337. # ----------------------------------------------------------------------------
  338.  
  339. obj\flthmsg.lib: handlemsg\handlemsg.def
  340.  @implib /nologo $@ %s
  341.  
  342. bin\FLTHMSG.DLL:  obj\handlemsg.OBJ \
  343.                   obj\handletemplate.OBJ \
  344.                   obj\charset.obj \
  345.                   obj\kludgeapi.obj \
  346.                   obj\squishapi.obj \
  347.                   obj\ftsapi.obj \
  348.                   obj\common.obj \
  349.                   obj\fltrun.lib \
  350.                   obj\fltaman.lib \
  351.                   obj\fltjam.lib \
  352.                   obj\fltutil.lib \
  353.                   handlemsg\handlemsg.def
  354.  @echo Linking $@ ...
  355.  @icc /Q /B$(LOPTDLL) /Fe$@ /Fm$*.map os2386.lib $(MSGAPIDIR)\lib\dll32.lib $**
  356.  
  357. obj\charset.obj: handlemsg\charset.c \
  358.                  handlemsg\charset.h
  359.  @echo Compiling %s ...
  360.  @$(CCDLL) /Fo$@ %s
  361.  
  362. obj\common.obj: handlemsg\common.c \
  363.                 main.h \
  364.                 structs.h \
  365.                 msgheader.h \
  366.                 util\addrcnv.h \
  367.                 areaman\areaman.h \
  368.                 handlemsg\handlemsg.h \
  369.                 handlemsg\kludgeapi.h \
  370.                 handlemsg\ftsapi.h \
  371.                 handlemsg\common.h
  372.  @echo Compiling %s ...
  373.  @$(CCDLL) /Fo$@ %s
  374.  
  375. obj\ftsapi.obj: handlemsg\ftsapi.c \
  376.                 main.h \
  377.                 messages.h \
  378.                 structs.h \
  379.                 msgheader.h \
  380.                 areaman\areaman.h \
  381.                 handlemsg\handlemsg.h \
  382.                 handlemsg\kludgeapi.h \
  383.                 handlemsg\common.h \
  384.                 handlemsg\ftsapi.h
  385.  @echo Compiling %s ...
  386.  @$(CCDLL) /Fo$@ %s
  387.  
  388. obj\handlemsg.obj: handlemsg\handlemsg.c \
  389.                    main.h \
  390.                    version.h \
  391.                    structs.h \
  392.                    areaman\areaman.h \
  393.                    msgheader.h \
  394.                    util\fltutil.h \
  395.                    util\addrcnv.h \
  396.                    handlemsg\handlemsg.h \
  397.                    handlemsg\handletemplate.h \
  398.                    handlemsg\charset.h \
  399.                    handlemsg\kludgeapi.h \
  400.                    handlemsg\squishapi.h \
  401.                    handlemsg\ftsapi.h \
  402.                    jamapi\jamapi.h
  403.  @echo Compiling %s ...
  404.  @$(CCDLL) /Fo$@ %s
  405.  
  406. obj\handletemplate.obj: handlemsg\handletemplate.c \
  407.                         main.h \
  408.                         structs.h \
  409.                         msgheader.h \
  410.                         areaman\areaman.h \
  411.                         util\addrcnv.h \
  412.                         handlemsg\handlemsg.h \
  413.                         handlemsg\handletemplate.h
  414.  @echo Compiling %s ...
  415.  @$(CCDLL) /Fo$@ %s
  416.  
  417. obj\kludgeapi.obj: handlemsg\kludgeapi.c \
  418.                    main.h \
  419.                    msgheader.h \
  420.                    handlemsg\kludgeapi.h
  421.  @echo Compiling %s ...
  422.  @$(CCDLL) /Fo$@ %s
  423.  
  424. obj\squishapi.obj: handlemsg\squishapi.c \
  425.                    main.h \
  426.                    structs.h \
  427.                    msgheader.h \
  428.                    util\addrcnv.h \
  429.                    areaman\areaman.h \
  430.                    handlemsg\handlemsg.h \
  431.                    handlemsg\kludgeapi.h \
  432.                    handlemsg\common.h \
  433.                    handlemsg\squishapi.h
  434.  @echo Compiling %s ...
  435.  @$(CCDLL) /Fo$@ %s
  436.  
  437. # ----------------------------------------------------------------------------
  438.  
  439. obj\fltctls.lib: controls\fltctls.def
  440.  @implib /nologo $@ %s
  441.  
  442. bin\fltctls.dll: \
  443.     obj\colorwheel.obj obj\colorselect.obj obj\editwin.OBJ \
  444.     obj\fontdisp.obj obj\listbox.obj obj\attrselect.obj obj\msgviewer.OBJ \
  445.     obj\reflow.OBJ obj\util.OBJ obj\mlist.obj obj\toolbar.obj obj\statline.OBJ \
  446.     obj\fltrun.lib \
  447.     obj\fltutil.lib \
  448.     obj\flthmsg.lib \
  449.     controls\fltctls.def
  450.  @echo Linking $@ ...
  451.  @icc /Q /B$(LOPTDLL) /B"/NOE" /Fe$@ /Fm$*.map os2386.lib $**
  452.  @rc -x obj\clrsel.res $@
  453.  
  454. obj\clrsel.res: controls\clrsel.rc \
  455.                 controls\wheel.bmp
  456.  @$(RCOMP) %s $@
  457.  
  458. obj\attrselect.obj: controls\attrselect.c \
  459.                     controls\attrselect.h
  460.  @echo Compiling %s ...
  461.  @$(CCDLL) /Fo$@ %s
  462.  
  463. obj\test.obj: controls\clrwtest.c \
  464.               controls\clrwhl.h
  465.  @echo Compiling %s ...
  466.  @$(CCDLL) /Fo$@ %s
  467.  
  468. obj\colorselect.obj: controls\colorselect.c \
  469.                      controls\clrwhl.h \
  470.                      controls\clrsel.h
  471.  @echo Compiling %s ...
  472.  @$(CCDLL) /Fo$@ %s
  473.  
  474. obj\colorwheel.obj: controls\colorwheel.c \
  475.                     controls\colorwheel.h \
  476.                     controls\clrwhl.h
  477.  @echo Compiling %s ...
  478.  @$(CCDLL) /Fo$@ %s
  479.  
  480. obj\editwin.obj: controls\editwin.c \
  481.                  main.h \
  482.                  resids.h \
  483.                  nodedrag.h \
  484.                  controls\editwin.h
  485.  @echo Compiling %s ...
  486.  @$(CCDLL) /Fo$@ %s
  487.  
  488. obj\fontdisp.obj: controls\fontdisp.c \
  489.                   controls\fontdisp.h
  490.  @echo Compiling %s ...
  491.  @$(CCDLL) /Fo$@ %s
  492.  
  493. obj\listbox.obj: controls\listbox.c \
  494.                  main.h \
  495.                  util\fltutil.h \
  496.                  controls\listboxprv.h \
  497.                  controls\listbox.h
  498.  @echo Compiling %s ...
  499.  @$(CCDLL) /Fo$@ %s
  500.  
  501. obj\mlist.obj: controls\mlist.c \
  502.                main.h \
  503.                msgheader.h \
  504.                structs.h \
  505.                areaman\areaman.h \
  506.                handlemsg\handlemsg.h \
  507.                controls\mlist.h \
  508.                controls\mlistprv.h
  509.  @echo Compiling %s ...
  510.  @$(CCDLL) /Fo$@ %s
  511.  
  512. obj\msgviewer.obj: controls\msgviewer.c \
  513.                    main.h \
  514.                    resids.h \
  515.                    controls\editwin.h \
  516.                    util\fltutil.h \
  517.                    controls\viewer_int.h \
  518.                    controls\util.h \
  519.                    controls\reflow.h \
  520.                    controls\msgviewer.h
  521.  @echo Compiling %s ...
  522.  @$(CCDLL) /Fo$@ %s
  523.  
  524. obj\reflow.obj: controls\reflow.c \
  525.                 controls\viewer_int.h \
  526.                 controls\util.h \
  527.                 controls\reflow.h
  528.  @echo Compiling %s ...
  529.  @$(CCDLL) /Fo$@ %s
  530.  
  531. obj\statline.obj: controls\statline.c \
  532.                   controls\statline.h
  533.  @echo Compiling %s ...
  534.  @$(CCDLL) /Fo$@ %s
  535.  
  536. obj\toolbar.obj: controls\toolbar.c \
  537.                  controls\toolbar.h \
  538.                  controls\toolbar_int.h
  539.  @echo Compiling %s ...
  540.  @$(CCDLL) /Fo$@ %s
  541.  
  542. obj\util.obj: controls\util.c \
  543.               controls\viewer_int.h \
  544.               controls\util.h
  545.  @echo Compiling %s ...
  546.  @$(CCDLL) /Fo$@ %s
  547.  
  548. # ----------------------------------------------------------------------------
  549.  
  550. obj\fltprint.lib: printmsg\fltprint.def
  551.  @implib /nologo $@ %s
  552.  
  553. bin\fltprint.dll: \
  554.      obj\printmsg.obj \
  555.      obj\setup.obj \
  556.      obj\fltrun.lib \
  557.      obj\fltaman.lib \
  558.      obj\flthmsg.lib \
  559.      obj\fltutil.lib \
  560.      printmsg\fltprint.def
  561.  @echo Linking $@ ...
  562.  @icc /q /B$(LOPTDLL) /Fe$@ /Fm$*.map os2386.lib $**
  563.  
  564. obj\SETUP.obj: printmsg\SETUP.C \
  565.                main.h \
  566.                structs.h \
  567.                printsetup.h \
  568.                printmsg\setup.h
  569.  @echo Compiling %s ...
  570.  @$(CCDLL) /Fo$@ /Ss %s
  571.  
  572. obj\printmsg.obj: printmsg\printmsg.c \
  573.                   main.h \
  574.                   resids.h \
  575.                   structs.h \
  576.                   msgheader.h \
  577.                   areaman\areaman.h \
  578.                   handlemsg\handlemsg.h \
  579.                   printsetup.h \
  580.                   util\addrcnv.h \
  581.                   printmsg\printmsg.h
  582.  @echo Compiling %s ...
  583.  @$(CCDLL) /Fo$@ /Ss %s
  584.  
  585. # ----------------------------------------------------------------------------
  586.  
  587. obj\fltv7.lib: fltv7\fltv7.def
  588.  @implib /nologo $@ %s
  589.  
  590. bin\FLTV7.DLL: obj\fltv7.OBJ \
  591.                obj\fltrun.lib \
  592.                obj\fltutil.lib \
  593.                fltv7\fltv7.def
  594.  @echo Linking $@ ...
  595.  @icc /Q /B$(LOPTDLL) /Fe$@ /Fm$*.map os2386.lib $**
  596.  
  597. obj\fltv7.obj: fltv7\fltv7.c \
  598.                fltv7\vers7.h \
  599.                main.h \
  600.                structs.h \
  601.                msgheader.h \
  602.                util\addrcnv.h \
  603.                fltv7\fltv7.h \
  604.                fltv7\fltv7structs.h \
  605.                fltv7\v7browse.h
  606.  @echo Compiling %s ...
  607.  @$(CCDLL) /Fo$@ %s
  608.  
  609. # ----------------------------------------------------------------------------
  610.  
  611. bin\fltcf_sq.dll: obj\read_sq_cfg.obj \
  612.                   obj\parsecfg.obj \
  613.                   obj\echoman_sq.obj \
  614.                   obj\fltrun.lib \
  615.                   obj\flthmsg.lib \
  616.                   obj\fltaman.lib \
  617.                   obj\fltutil.lib \
  618.                   squish_cfg\fltcf_sq.def
  619.  @echo Linking $@ ...
  620.  @icc /Q /B$(LOPTDLL) /Fe$@ /Fm$*.map os2386.lib $**
  621.  @$(RBIND) obj\dialog.res $@
  622.  
  623. obj\dialog.res: squish_cfg\dialog.rc \
  624.                 squish_cfg\dialog.dlg \
  625.                 squish_cfg\echoman_sq.h
  626.  @$(RCOMP) %s $@
  627.  
  628. obj\echoman_sq.obj: squish_cfg\echoman_sq.c \
  629.                     devkit\echoman.h \
  630.                     util\fltutil.h \
  631.                     util\crc32.h \
  632.                     squish_cfg\echoman_sq.h
  633.  @echo Compiling %s ...
  634.  @$(CCDLL) /Fo$@ %s
  635.  
  636. obj\parsecfg.obj: squish_cfg\parsecfg.c \
  637.                   main.h \
  638.                   msgheader.h \
  639.                   structs.h \
  640.                   areaman\areaman.h \
  641.                   cfgfile_interface.h \
  642.                   util\fltutil.h \
  643.                   util\addrcnv.h \
  644.                   handlemsg\handlemsg.h \
  645.                   squish_cfg\parsecfg.h
  646.  @echo Compiling %s ...
  647.  @$(CCDLL) /Fo$@ %s
  648.  
  649. obj\read_sq_cfg.obj: squish_cfg\read_sq_cfg.c \
  650.                      main.h \
  651.                      structs.h \
  652.                      msgheader.h \
  653.                      areaman\areaman.h \
  654.                      handlemsg\handlemsg.h \
  655.                      cfgfile_interface.h \
  656.                      squish_cfg\read_sq_cfg.h \
  657.                      squish_cfg\parsecfg.h
  658.  @echo Compiling %s ...
  659.  @$(CCDLL) /Fo$@ %s
  660.  
  661. # ----------------------------------------------------------------------------
  662.  
  663. bin\FLTCF_FE.dll: obj\read_fe_cfg.obj \
  664.                   obj\fe_common.obj \
  665.                   obj\fe_revision4.obj   \
  666.                   obj\fe_revision5.obj   \
  667.                   obj\fe_revision6.obj   \
  668.                   obj\fltrun.lib \
  669.                   obj\fltaman.lib \
  670.                   obj\fltutil.lib \
  671.                   fastecho\FLTCF_FE.def
  672.  @echo Linking $@ ...
  673.  @icc /Q /B$(LOPTDLL) /Fe$@ /Fm$*.map os2386.lib $**
  674.  
  675. obj\READ_FE_CFG.obj: fastecho\READ_FE_CFG.C \
  676.                      main.h \
  677.                      structs.h \
  678.                      areaman\areaman.h \
  679.                      cfgfile_interface.h \
  680.                      fastecho\read_fe_cfg.h \
  681.                      fastecho\revision4.h \
  682.                      fastecho\revision5.h \
  683.                      fastecho\revision6.h
  684.  @echo Compiling %s ...
  685.  @$(CCDLL) /Fo$@ %s
  686.  
  687. obj\fe_REVISION4.obj: fastecho\REVISION4.C \
  688.                       main.h \
  689.                       structs.h \
  690.                       fastecho\fecfg130.h \
  691.                       areaman\areaman.h \
  692.                       cfgfile_interface.h \
  693.                       msgheader.h \
  694.                       util\addrcnv.h \
  695.                       fastecho\common.h \
  696.                       fastecho\revision4.h
  697.  @echo Compiling %s ...
  698.  @$(CCDLL) /Fo$@ %s
  699.  
  700. obj\fe_REVISION5.obj: fastecho\REVISION5.C \
  701.                       main.h \
  702.                       structs.h \
  703.                       fastecho\fecfg141.h \
  704.                       areaman\areaman.h \
  705.                       cfgfile_interface.h \
  706.                       msgheader.h \
  707.                       util\addrcnv.h \
  708.                       fastecho\common.h \
  709.                       fastecho\revision5.h
  710.  @echo Compiling %s ...
  711.  @$(CCDLL) /Fo$@ %s
  712.  
  713. obj\fe_revision6.obj: fastecho\revision6.c \
  714.                       main.h \
  715.                       structs.h \
  716.                       fastecho\fecfg142.h \
  717.                       areaman\areaman.h \
  718.                       cfgfile_interface.h \
  719.                       msgheader.h \
  720.                       util\addrcnv.h \
  721.                       fastecho\common.h \
  722.                       fastecho\revision6.h
  723.  @echo Compiling %s ...
  724.  @$(CCDLL) /Fo$@ %s
  725.  
  726. obj\fe_common.obj: fastecho\common.c \
  727.                    main.h \
  728.                    structs.h \
  729.                    msgheader.h \
  730.                    areaman\areaman.h \
  731.                    util\addrcnv.h \
  732.                    fastecho\common.h
  733.  @echo Compiling %s ...
  734.  @$(CCDLL) /Fo$@ %s
  735.  
  736. # ----------------------------------------------------------------------------
  737.  
  738. bin\FLTCF_IM.dll: obj\im_cfg.obj \
  739.                   obj\im_revision4.obj \
  740.                   obj\im_revision5.obj \
  741. #                  obj\im_revision6.obj \
  742.                   obj\im_common.obj \
  743.                   obj\fltrun.lib \
  744.                   obj\fltaman.lib \
  745.                   obj\fltutil.lib \
  746.                   imail\FLTCF_IM.def
  747.  @echo Linking $@ ...
  748.  @icc /Q /B$(LOPTDLL) /Fe$@ /Fm$*.map os2386.lib $**
  749.  
  750. obj\im_common.obj: imail\common.c \
  751.                    main.h \
  752.                    structs.h \
  753.                    msgheader.h \
  754.                    areaman\areaman.h \
  755.                    util\fltutil.h \
  756.                    util\addrcnv.h \
  757.                    imail\common.h
  758.  @echo Compiling %s ...
  759.  @$(CCDLL) /Fo$@ %s
  760.  
  761. obj\im_cfg.obj: imail\im_cfg.c \
  762.                 main.h \
  763.                 structs.h \
  764.                 msgheader.h \
  765.                 areaman\areaman.h \
  766.                 cfgfile_interface.h \
  767.                 imail\common.h \
  768.                 imail\revision4.h \
  769.                 imail\revision5.h \
  770. #                imail\revision6.h \
  771.                 imail\im_cfg.h
  772.  @echo Compiling %s ...
  773.  @$(CCDLL) /Fo$@ %s
  774.  
  775. obj\im_revision4.obj: imail\revision4.c \
  776.                       main.h \
  777.                       structs.h \
  778.                       msgheader.h \
  779.                       areaman\areaman.h \
  780.                       cfgfile_interface.h \
  781.                       util\fltutil.h \
  782.                       util\addrcnv.h \
  783.                       imail\im_struc.h \
  784.                       imail\revision4.h \
  785.                       imail\common.h
  786.  @echo Compiling %s ...
  787.  @$(CCDLL) /Fo$@ %s
  788.  
  789. obj\im_revision5.obj: imail\revision5.c \
  790.                       main.h \
  791.                       structs.h \
  792.                       msgheader.h \
  793.                       areaman\areaman.h \
  794.                       cfgfile_interface.h \
  795.                       util\fltutil.h \
  796.                       util\addrcnv.h \
  797.                       imail\imail170.h \
  798.                       imail\revision5.h \
  799.                       imail\common.h
  800.  @echo Compiling %s ...
  801.  @$(CCDLL) /Fo$@ %s
  802.  
  803. # IMail >= 1.86: source not included
  804. #
  805. #obj\im_revision6.obj: imail\revision6.c \
  806. #                      main.h \
  807. #                      structs.h \
  808. #                      msgheader.h \
  809. #                      areaman\areaman.h \
  810. #                      cfgfile_interface.h \
  811. #                      util\fltutil.h \
  812. #                      util\addrcnv.h \
  813. #                      imail\imail185.h \
  814. #                      imail\revision6.h \
  815. #                      imail\common.h
  816. # @echo Compiling %s ...
  817. # @$(CCDLL) /Fo$@ %s
  818.  
  819. # ----------------------------------------------------------------------------
  820.  
  821. # GEcho: source not included
  822. #
  823. #bin\fltcf_ge.dll: obj\ge_cfg.obj \
  824. #                  obj\ge_revision2.obj \
  825. #                  obj\fltrun.lib \
  826. #                  obj\fltaman.lib \
  827. #                  obj\fltutil.lib \
  828. #                  gecho\fltcf_ge.def
  829. # @echo Linking $@ ...
  830. # @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  831. #
  832. #obj\ge_cfg.obj: gecho\ge_cfg.c \
  833. #                main.h \
  834. #                structs.h \
  835. #                areaman\areaman.h \
  836. #                cfgfile_interface.h \
  837. #                gecho\revision2.h \
  838. #                gecho\ge_cfg.h
  839. # @echo Compiling %s ...
  840. # @$(CCDLL) /Fo$@ %s
  841. #
  842. #obj\ge_revision2.obj: gecho\revision2.c \
  843. #                      main.h \
  844. #                      structs.h \
  845. #                      msgheader.h \
  846. #                      areaman\areaman.h \
  847. #                      cfgfile_interface.h \
  848. #                      util\fltutil.h \
  849. #                      util\addrcnv.h \
  850. #                      gecho\gestruct.h
  851. # @echo Compiling %s ...
  852. # @$(CCDLL) /Fo$@ %s
  853.  
  854. # ----------------------------------------------------------------------------
  855.  
  856. bin\fltcf_lo.dll: obj\lo_cfg.obj \
  857.                   obj\lo_revision3.obj \
  858.                   obj\fltrun.lib \
  859.                   obj\fltaman.lib \
  860.                   obj\fltutil.lib \
  861.                   lora\fltcf_lo.def
  862.  @echo Linking $@ ...
  863.  @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  864.  
  865. obj\lo_cfg.obj: lora\lo_cfg.c \
  866.                 main.h \
  867.                 structs.h \
  868.                 areaman\areaman.h \
  869.                 cfgfile_interface.h \
  870.                 lora\revision3.h \
  871.                 lora\lo_cfg.h
  872.  @echo Compiling %s ...
  873.  @$(CCDLL) /Fo$@ %s
  874.  
  875. obj\lo_revision3.obj: lora\revision3.c \
  876.                       main.h \
  877.                       structs.h \
  878.                       msgheader.h \
  879.                       areaman\areaman.h \
  880.                       cfgfile_interface.h \
  881.                       util\fltutil.h \
  882.                       util\addrcnv.h \
  883.                       lora\lora.h
  884.  @echo Compiling %s ...
  885.  @$(CCDLL) /Fo$@ %s
  886.  
  887. # ----------------------------------------------------------------------------
  888.  
  889. bin\fltcf_fm.dll: obj\fm_cfg.obj \
  890.                   obj\fm_revision1.obj \
  891.                   obj\fltrun.lib \
  892.                   obj\fltaman.lib \
  893.                   obj\fltutil.lib \
  894.                   fmail\fltcf_fm.def
  895.  @echo Linking $@ ...
  896.  @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  897.  
  898. obj\fm_cfg.obj: fmail\fm_cfg.c \
  899.                 main.h \
  900.                 structs.h \
  901.                 areaman\areaman.h \
  902.                 cfgfile_interface.h \
  903.                 fmail\revision1.h \
  904.                 fmail\fm_cfg.h
  905.  @echo Compiling %s ...
  906.  @$(CCDLL) /Fo$@ %s
  907.  
  908. obj\fm_revision1.obj: fmail\revision1.c \
  909.                       main.h \
  910.                       structs.h \
  911.                       msgheader.h \
  912.                       areaman\areaman.h \
  913.                       cfgfile_interface.h \
  914.                       util\fltutil.h \
  915.                       util\addrcnv.h \
  916.                       fmail\fmstruct.h
  917.  @echo Compiling %s ...
  918.  @$(CCDLL) /Fo$@ %s
  919.  
  920. # ----------------------------------------------------------------------------
  921.  
  922. bin\fltcf_wm.dll: obj\wm_cfg.obj \
  923.                   obj\wm_revision12.obj \
  924.                   obj\pas2c.obj \
  925.                   obj\fltrun.lib \
  926.                   obj\fltaman.lib \
  927.                   obj\fltutil.lib \
  928.                   wmail\fltcf_wm.def
  929.  @echo Linking $@ ...
  930.  @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  931.  
  932. obj\pas2c.obj: wmail\pas2c.c
  933.  @echo Compiling %s ...
  934.  @$(CCDLL) /Fo$@ %s
  935.  
  936. obj\wm_revision12.obj: wmail\revision12.c \
  937.                        main.h \
  938.                        structs.h \
  939.                        msgheader.h \
  940.                        areaman\areaman.h \
  941.                        cfgfile_interface.h \
  942.                        util\fltutil.h \
  943.                        util\addrcnv.h \
  944.                        wmail\pas2c.h \
  945.                        wmail\wmstruct.h
  946.  @echo Compiling %s ...
  947.  @$(CCDLL) /Fo$@ %s
  948.  
  949. obj\wm_cfg.obj: wmail\wm_cfg.c \
  950.                 main.h \
  951.                 structs.h \
  952.                 areaman\areaman.h \
  953.                 cfgfile_interface.h \
  954.                 wmail\revision12.h \
  955.                 wmail\wm_cfg.h
  956.  @echo Compiling %s ...
  957.  @$(CCDLL) /Fo$@ %s
  958.  
  959. # ----------------------------------------------------------------------------
  960.  
  961. bin\fltcf_tm.dll: obj\tm_cfg.obj \
  962.                   obj\fltrun.lib \
  963.                   obj\fltaman.lib \
  964.                   obj\fltutil.lib \
  965.                   obj\flthmsg.lib \
  966.                   termail\fltcf_tm.def
  967.  @echo Linking $@ ...
  968.  @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  969.  
  970. obj\tm_cfg.obj: termail\tm_cfg.c \
  971.                 main.h \
  972.                 structs.h \
  973.                 msgheader.h \
  974.                 areaman\areaman.h \
  975.                 cfgfile_interface.h \
  976.                 util\fltutil.h \
  977.                 util\addrcnv.h \
  978.                 handlemsg\handlemsg.h \
  979.                 termail\tm_cfg.h
  980.  @echo Compiling %s ...
  981.  @$(CCDLL) /Fo$@ %s
  982.  
  983. # ----------------------------------------------------------------------------
  984.  
  985. bin\fltcf_np.dll: obj\np_cfg.obj \
  986.                   obj\rev099.obj \
  987.                   obj\rev100.obj \
  988.                   obj\fltrun.lib \
  989.                   obj\fltaman.lib \
  990.                   nwpm\fltcf_np.def
  991.  @echo Linking $@ ...
  992.  @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  993.  
  994. obj\np_cfg.obj: nwpm\np_cfg.c \
  995.                 main.h \
  996.                 structs.h \
  997.                 areaman\areaman.h \
  998.                 cfgfile_interface.h \
  999.                 util\fltutil.h \
  1000.                 msgheader.h \
  1001.                 nwpm\np_cfg.h \
  1002.                 nwpm\rev099.h \
  1003.                 nwpm\rev100.h
  1004.  @echo Compiling %s ...
  1005.  @$(CCDLL) /Fo$@ %s
  1006.  
  1007. obj\rev099.obj: nwpm\rev099.c \
  1008.                 main.h \
  1009.                 structs.h \
  1010.                 areaman\areaman.h \
  1011.                 cfgfile_interface.h \
  1012.                 util\fltutil.h \
  1013.                 msgheader.h \
  1014.                 util\addrcnv.h \
  1015.                 nwpm\rev099.h
  1016.  @echo Compiling %s ...
  1017.  @$(CCDLL) /Fo$@ %s
  1018.  
  1019. obj\rev100.obj: nwpm\rev100.c \
  1020.                 main.h \
  1021.                 structs.h \
  1022.                 areaman\areaman.h \
  1023.                 cfgfile_interface.h \
  1024.                 util\fltutil.h \
  1025.                 msgheader.h \
  1026.                 util\addrcnv.h \
  1027.                 nwpm\rev100.h
  1028.  @echo Compiling %s ...
  1029.  @$(CCDLL) /Fo$@ %s
  1030.  
  1031. # ----------------------------------------------------------------------------
  1032.  
  1033. bin\fltcf_bb.dll: obj\bb_cfg.obj \
  1034.                   obj\fltrun.lib \
  1035.                   obj\fltaman.lib \
  1036.                   obj\fltutil.lib \
  1037.                   bbtoss\fltcf_bb.def
  1038.  @echo Linking $@ ...
  1039.  @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  1040.  
  1041. obj\bb_cfg.obj: bbtoss\bb_cfg.c \
  1042.                 main.h \
  1043.                 structs.h \
  1044.                 areaman\areaman.h \
  1045.                 cfgfile_interface.h \
  1046.                 util\fltutil.h \
  1047.                 msgheader.h \
  1048.                 util\addrcnv.h \
  1049.                 bbtoss\bb_cfg.h
  1050.  @echo Compiling %s ...
  1051.  @$(CCDLL) /Fo$@ %s
  1052.  
  1053. # ----------------------------------------------------------------------------
  1054.  
  1055. bin\fltcf_sg.dll: obj\sg_cfg.obj \
  1056.                   obj\pas2c.obj \
  1057.                   obj\fltrun.lib \
  1058.                   obj\fltaman.lib \
  1059.                   obj\fltutil.lib \
  1060.                   shotgun\fltcf_sg.def
  1061.  @echo Linking $@ ...
  1062.  @icc /Q /Fe$@ /B$(LOPTDLL) /Fm$*.map os2386.lib $**
  1063.  
  1064. obj\sg_cfg.obj: shotgun\sg_cfg.c \
  1065.                 main.h \
  1066.                 structs.h \
  1067.                 areaman\areaman.h \
  1068.                 cfgfile_interface.h \
  1069.                 util\fltutil.h \
  1070.                 msgheader.h \
  1071.                 util\addrcnv.h \
  1072.                 shotgun\shotgun.h \
  1073.                 shotgun\pas2c.h \
  1074.                 shotgun\sg_cfg.h
  1075.  @echo Compiling %s ...
  1076.  @$(CCDLL) /Fo$@ %s
  1077.  
  1078. # ----------------------------------------------------------------------------
  1079.  
  1080. bin\testcfg.exe: obj\tcfgmain.obj \
  1081.                  testcfg\main.def
  1082.  @echo Linking $@ ...
  1083.  @icc /Q /B"/DE /NOLOGO" /Fe$@ /Fm$*.map $**
  1084.  
  1085. obj\tcfgmain.obj: testcfg\main.c \
  1086.                   main.h \
  1087.                   structs.h \
  1088.                   areaman\areaman.h \
  1089.                   cfgfile_interface.h
  1090.  @echo Compiling %s ...
  1091.  @icc /Ti /Gm /Tdc /Ss /Si /Q /Wdcleffgotiniobsparprorearettruuse /C /Fo$@ %s
  1092.  
  1093. # ----------------------------------------------------------------------------
  1094.  
  1095. obj\fleetlng.dll: \
  1096.     obj\fleetlng.obj \
  1097.     languages\fleetlng.def \
  1098.     obj\fltrun.lib
  1099.  @echo Linking $@ ...
  1100.  @icc /Q /B"/NOE /m /packd /nologo" /Fe$@ /Fm$*.map $**
  1101.  
  1102. obj\fleetlng.obj: languages\fleetlng.c
  1103.  @echo Compiling %s ...
  1104.  @icc /O /Q /Rn /Ge- /Gs /C /Fo$@ %s
  1105.  
  1106. # ----------------------------------------------------------------------------
  1107.  
  1108. bin\fleetcom.exe: obj\fleetcom.obj \
  1109.                   obj\fltrun.lib \
  1110.                   fleetcom\fleetcom.def
  1111.  @echo Linking $@ ...
  1112.  @icc /Q /B"/L /packd /nologo /m /NOD" /Fe$@ /Fm$*.map os2386.lib $**
  1113.  
  1114. obj\fleetcom.obj: fleetcom\fleetcom.c \
  1115.                   asciitable.h \
  1116.                   version.h
  1117.  @echo Compiling %s ...
  1118.  @icc /Gm /Gn /O /Oi- /Ti /Q /Wdcleffgotobsordparprorearetuse /Si /C /Fo$@ %s
  1119.  
  1120. # ----------------------------------------------------------------------------
  1121.  
  1122. bin\INSTALL.EXE: obj\INSTALL.OBJ \
  1123.                  install\INSTALL.DEF
  1124.  @echo Linking $@ ...
  1125.  @icc /Q /B"/M /l /NOE /pmtype:pm /packd /PACKC /nologo" /Fe$@ /Fm$*.map $**
  1126.  @$(RBIND) obj\INSTALL.RES bin\INSTALL.EXE
  1127.  
  1128. obj\INSTALL.OBJ: install\INSTALL.C \
  1129.                  install\INSTALL.H
  1130.  @echo Compiling %s ...
  1131.  @icc /O /Ti /Gm /Tdc /Ss /Si /Q /Wdcleffgotiniobsparprorearettruusecnd- /C /Fo$@ %s
  1132.  
  1133. obj\INSTALL.RES: install\INSTALL.RC \
  1134.                  install\INSTALL.DLG \
  1135.                  install\INSTALL.H \
  1136.                  resources\logo2.bmp \
  1137.                  resources\install.ico
  1138.  @$(RCOMP) %s $@
  1139.  
  1140. # ----------------------------------------------------------------------------
  1141.  
  1142. bin\buildinstall.exe: obj\buildinstall.obj \
  1143.                       install\buildinstall.def
  1144.  @echo Linking $@ ...
  1145.  @ICC /Q /B"/l /exepack /packd /packc /m /nologo" /Fe$@ /Fm$*.map $**
  1146.  
  1147. obj\buildinstall.obj: install\buildinstall.c
  1148.  @echo Compiling %s ...
  1149.  @ICC /Ti /Oc /C /Q /Wdcleffgotiniobsparprorearettruusecnd- /Fo$@ %s
  1150.  
  1151. # ----------------------------------------------------------------------------
  1152.  
  1153. english: obj\english.LNG \
  1154.          obj\english.INF \
  1155.          obj\english.HLP
  1156.  
  1157. obj\english.LNG: obj\english.res \
  1158.                  obj\fleetlng.dll
  1159.  @copy obj\fleetlng.dll $@
  1160.  @$(RBIND) %s $@
  1161.  @copy $@ bin\fleetlng.dll
  1162.  
  1163. obj\english.res: languages\english\main.rc \
  1164.                  languages\english\main.dlg \
  1165.                  dialogids.h \
  1166.                  resids.h \
  1167.                  setupdlg.h \
  1168.                  areasettings.h
  1169.  @$(RCOMP) %s $@
  1170.  
  1171. obj\english.hlp: languages\english\*.ips \
  1172.                  languages\help.names
  1173.  @set IPFCARTWORK=resources
  1174.  @IPFC languages\english\main.ips $@ /s
  1175.  @copy $@ bin\fltstrt.hlp
  1176.  
  1177. obj\english.INF: languages\english\USERDOC.IPF
  1178.  @set IPFCARTWORK=resources
  1179.  @IPFC %s $@ /s /inf
  1180.  @copy $@ bin\fltstrt.inf
  1181.  
  1182. # ----------------------------------------------------------------------------
  1183.  
  1184. german: obj\german.LNG \
  1185.         obj\german.INF \
  1186.         obj\german.HLP
  1187.  
  1188. obj\german.LNG: obj\german.res \
  1189.                  obj\fleetlng.dll
  1190.  @copy obj\fleetlng.dll $@
  1191.  @$(RBIND) %s $@
  1192.  @copy $@ bin\fleetlng.dll
  1193.  
  1194. obj\german.res: languages\german\main.rc \
  1195.                  languages\german\main.dlg \
  1196.                  dialogids.h \
  1197.                  resids.h \
  1198.                  setupdlg.h \
  1199.                  areasettings.h
  1200.  @$(RCOMP) %s $@
  1201.  
  1202. obj\german.hlp: languages\german\*.ips \
  1203.                 languages\help.names
  1204.  @set IPFCARTWORK=resources
  1205.  @IPFC languages\german\main.ips $@ /s
  1206.  @copy $@ bin\fltstrt.hlp
  1207.  
  1208. obj\german.INF: languages\german\USERDOC.IPF
  1209.  @set IPFCARTWORK=resources
  1210.  @IPFC %s $@ /s /inf
  1211.  @copy $@ bin\fltstrt.inf
  1212.  
  1213. # ----------------------------------------------------------------------------
  1214.  
  1215. italian: obj\italian.LNG \
  1216.          obj\italian.INF \
  1217.          obj\italian.HLP
  1218.  
  1219. obj\italian.LNG: obj\italian.res \
  1220.                  obj\fleetlng.dll
  1221.  @copy obj\fleetlng.dll $@
  1222.  @$(RBIND) %s $@
  1223.  @copy $@ bin\fleetlng.dll
  1224.  
  1225. obj\italian.res: languages\italian\main.rc \
  1226.                  languages\italian\main.dlg \
  1227.                  dialogids.h \
  1228.                  resids.h \
  1229.                  setupdlg.h \
  1230.                  areasettings.h
  1231.  @$(RCOMP) %s $@
  1232.  
  1233. obj\italian.hlp: languages\italian\*.ips \
  1234.                  languages\help.names
  1235.  @set IPFCARTWORK=resources
  1236.  @IPFC languages\italian\main.ips $@ /s
  1237.  @copy $@ bin\fltstrt.hlp
  1238.  
  1239. obj\italian.INF: languages\italian\USERDOC.IPF
  1240.  @set IPFCARTWORK=resources
  1241.  @IPFC %s $@ /s /inf
  1242.  @copy $@ bin\fltstrt.inf
  1243.  
  1244. # ----------------------------------------------------------------------------
  1245.  
  1246. swedish: obj\swedish.LNG \
  1247.          obj\swedish.INF \
  1248.          obj\swedish.HLP
  1249.  
  1250. obj\swedish.LNG: obj\swedish.res \
  1251.                  obj\fleetlng.dll
  1252.  @copy obj\fleetlng.dll $@
  1253.  @$(RBIND) %s $@
  1254.  @copy $@ bin\fleetlng.dll
  1255.  
  1256. obj\swedish.res: languages\swedish\main.rc \
  1257.                  languages\swedish\main.dlg \
  1258.                  dialogids.h \
  1259.                  resids.h \
  1260.                  setupdlg.h \
  1261.                  areasettings.h
  1262.  @$(RCOMP) %s $@
  1263.  
  1264. obj\swedish.hlp: languages\swedish\*.ips \
  1265.                  languages\help.names
  1266.  @set IPFCARTWORK=resources
  1267.  @IPFC languages\swedish\main.ips $@ /s
  1268.  @copy $@ bin\fltstrt.hlp
  1269.  
  1270. languages\help.names: help.h
  1271.  @languages\def2name %s $@
  1272.  
  1273. obj\swedish.INF: languages\swedish\USERDOC.IPF
  1274.  @set IPFCARTWORK=resources
  1275.  @IPFC %s $@ /s /inf
  1276.  @copy $@ bin\fltstrt.inf
  1277.  
  1278. # ----------------------------------------------------------------------------
  1279. # @@
  1280.  
  1281. bin\FLTSTRT.EXE:  \
  1282.   obj\attachcheck.obj \
  1283.   obj\areadlg.OBJ \
  1284.   obj\areascan.obj \
  1285.   obj\areasettings.OBJ \
  1286.   obj\arealistsettings.OBJ \
  1287.   obj\cclist.OBJ \
  1288.   obj\ccmanage.obj \
  1289.   obj\cfgfile_interface.obj \
  1290.   obj\dialogs.OBJ \
  1291.   obj\echomanager.obj \
  1292.   obj\finddlg.OBJ \
  1293.   obj\findexec.obj \
  1294.   obj\init.OBJ \
  1295.   obj\lookups.obj \
  1296.   obj\main.OBJ \
  1297.   obj\mainwindow.OBJ \
  1298.   obj\markmanage.obj \
  1299.   obj\msglist.OBJ \
  1300.   obj\nickmanage.obj \
  1301.   obj\nicknames.obj \
  1302.   obj\nlbrowser.obj \
  1303.   obj\pipeserv.OBJ \
  1304.   obj\printsetup.obj \
  1305.   obj\request.OBJ \
  1306.   obj\request_manage.OBJ \
  1307.   obj\rexxexec.obj \
  1308.   obj\rxfolder.obj \
  1309.   obj\savemsg.OBJ \
  1310.   obj\secwin.obj \
  1311.   obj\setupdlg.OBJ \
  1312.   obj\templatedlg.OBJ \
  1313.   obj\threadlist.OBJ \
  1314.   obj\threadlistsettings.OBJ \
  1315.   obj\toolbarconfig.obj \
  1316.   obj\utility.OBJ \
  1317.   obj\fltaman.lib \
  1318.   obj\fltrun.lib \
  1319.   obj\fltctls.lib \
  1320.   obj\fltv7.lib \
  1321.   obj\flthmsg.lib \
  1322.   obj\fltprint.lib \
  1323.   obj\fltutil.lib \
  1324.   obj\fltdump.lib \
  1325.   main.def
  1326.  @echo Linking $@ ...
  1327.  @icc /Q /B$(LOPT) /Fe$@ /Fm$*.map os2386.lib rexx.lib $**
  1328.  @$(RBIND) obj\main.RES $@
  1329.  
  1330. obj\main.RES: main.rc     \
  1331.               resids.h    \
  1332.               dialogids.h \
  1333.               setupdlg.h  \
  1334.               areadlg.h   \
  1335.               help.rc     \
  1336.               resources\*
  1337.  @$(RCOMP) %s $@
  1338.  
  1339. obj\areadlg.obj: areadlg.c \
  1340.                  main.h \
  1341.                  resids.h \
  1342.                  messages.h \
  1343.                  structs.h \
  1344.                  areaman\areaman.h \
  1345.                  areaman\folderman.h \
  1346.                  msgheader.h \
  1347.                  dialogids.h \
  1348.                  setupdlg.h \
  1349.                  dialogs.h \
  1350.                  handlemsg\handlemsg.h \
  1351.                  utility.h \
  1352.                  msglist.h \
  1353.                  util\fltutil.h \
  1354.                  arealistsettings.h \
  1355.                  areasettings.h \
  1356.                  areascan.h \
  1357.                  areadlg.h \
  1358.                  areadrag.h \
  1359.                  folderdrag.h
  1360.  @echo Compiling %s ...
  1361.  @$(CC) /Fo$@ %s
  1362.  
  1363. obj\arealistsettings.obj: arealistsettings.c \
  1364.                           main.h \
  1365.                           resids.h \
  1366.                           structs.h \
  1367.                           msgheader.h \
  1368.                           areaman\areaman.h \
  1369.                           dialogids.h \
  1370.                           areadlg.h \
  1371.                           utility.h \
  1372.                           controls\clrsel.h \
  1373.                           arealistsettings.h
  1374.  @echo Compiling %s ...
  1375.  @$(CC) /Fo$@ %s
  1376.  
  1377. obj\areascan.obj: areascan.c \
  1378.                   main.h \
  1379.                   messages.h \
  1380.                   structs.h \
  1381.                   msgheader.h \
  1382.                   areaman\areaman.h \
  1383.                   handlemsg\handlemsg.h \
  1384.                   dump\expt.h \
  1385.                   areascan.h
  1386.  @echo Compiling %s ...
  1387.  @$(CC) /Fo$@ %s
  1388.  
  1389. obj\areasettings.obj: areasettings.c \
  1390.                       main.h \
  1391.                       resids.h \
  1392.                       messages.h \
  1393.                       structs.h \
  1394.                       msgheader.h \
  1395.                       areaman\areaman.h \
  1396.                       dialogids.h \
  1397.                       setupdlg.h \
  1398.                       areadlg.h \
  1399.                       utility.h \
  1400.                       controls\editwin.h \
  1401.                       controls\attrselect.h \
  1402.                       handlemsg\handlemsg.h \
  1403.                       areasettings.h
  1404.  @echo Compiling %s ...
  1405.  @$(CC) /Fo$@ %s
  1406.  
  1407. obj\attachcheck.obj: attachcheck.c \
  1408.                      main.h \
  1409.                      resids.h \
  1410.                      structs.h \
  1411.                      msgheader.h \
  1412.                      areaman\areaman.h \
  1413.                      dialogids.h \
  1414.                      utility.h \
  1415.                      attachcheck.h
  1416.  @echo Compiling %s ...
  1417.  @$(CC) /Fo$@ %s
  1418.  
  1419. obj\cclist.obj: cclist.c \
  1420.                 main.h \
  1421.                 resids.h \
  1422.                 messages.h \
  1423.                 structs.h \
  1424.                 msgheader.h \
  1425.                 areaman\areaman.h \
  1426.                 dialogids.h \
  1427.                 controls\editwin.h \
  1428.                 utility.h \
  1429.                 cclist.h \
  1430.                 fltv7\fltv7.h \
  1431.                 nodedrag.h \
  1432.                 lookups.h \
  1433.                 util\fltutil.h \
  1434.                 util\addrcnv.h \
  1435.                 ccmanage.h \
  1436.                 nickmanage.h
  1437.  @echo Compiling %s ...
  1438.  @$(CC) /Fo$@ %s
  1439.  
  1440. obj\ccmanage.obj: ccmanage.c \
  1441.                   main.h \
  1442.                   structs.h \
  1443.                   ccmanage.h
  1444.  @echo Compiling %s ...
  1445.  @$(CC) /Fo$@ %s
  1446.  
  1447. obj\cfgfile_interface.obj: cfgfile_interface.c \
  1448.                            main.h \
  1449.                            structs.h \
  1450.                            areaman\areaman.h \
  1451.                            cfgfile_interface.h
  1452.  @echo Compiling %s ...
  1453.  @$(CC) /Fo$@ %s
  1454.  
  1455. obj\dialogs.obj: dialogs.c \
  1456.                  main.h \
  1457.                  resids.h \
  1458.                  messages.h \
  1459.                  structs.h \
  1460.                  msgheader.h \
  1461.                  areaman\areaman.h \
  1462.                  dialogs.h \
  1463.                  dialogids.h \
  1464.                  init.h \
  1465.                  handlemsg\handlemsg.h \
  1466.                  handlemsg\kludgeapi.h \
  1467.                  controls\editwin.h \
  1468.                  utility.h \
  1469.                  fltv7\fltv7.h \
  1470.                  lookups.h \
  1471.                  nickmanage.h \
  1472.                  dump\expt.h
  1473.  @echo Compiling %s ...
  1474.  @$(CC) /Fo$@ %s
  1475.  
  1476. obj\echomanager.obj: echomanager.c \
  1477.                      main.h \
  1478.                      resids.h \
  1479.                      messages.h \
  1480.                      structs.h \
  1481.                      msgheader.h \
  1482.                      areaman\areaman.h \
  1483.                      utility.h \
  1484.                      dialogids.h \
  1485.                      handlemsg\handlemsg.h \
  1486.                      handlemsg\kludgeapi.h \
  1487.                      areadlg.h \
  1488.                      setupdlg.h \
  1489.                      savemsg.h \
  1490.                      devkit\echoman.h \
  1491.                      util\fltutil.h \
  1492.                      util\addrcnv.h \
  1493.                      dump\expt.h \
  1494.                      echomanager.h
  1495.  @echo Compiling %s ...
  1496.  @$(CC) /Fo$@ %s
  1497.  
  1498. obj\finddlg.obj: finddlg.c \
  1499.                  main.h \
  1500.                  resids.h \
  1501.                  messages.h \
  1502.                  structs.h \
  1503.                  msgheader.h \
  1504.                  areaman\areaman.h \
  1505.                  dialogids.h \
  1506.                  handlemsg\handlemsg.h \
  1507.                  util\fltutil.h \
  1508.                  finddlg.h \
  1509.                  utility.h \
  1510.                  areadlg.h \
  1511.                  findexec.h \
  1512.                  markmanage.h \
  1513.                  msglist.h
  1514.  @echo Compiling %s ...
  1515.  @$(CC) /Fo$@ %s
  1516.  
  1517. obj\findexec.obj: findexec.c \
  1518.                   main.h \
  1519.                   messages.h \
  1520.                   structs.h \
  1521.                   msgheader.h \
  1522.                   areaman\areaman.h \
  1523.                   handlemsg\handlemsg.h \
  1524.                   handlemsg\kludgeapi.h \
  1525.                   finddlg.h \
  1526.                   util\approx.h \
  1527.                   util\match.h \
  1528.                   markmanage.h \
  1529.                   util\fltutil.h \
  1530.                   utility.h \
  1531.                   dump\expt.h \
  1532.                   findexec.h
  1533.  @echo Compiling %s ...
  1534.  @$(CC) /Fo$@ %s
  1535.  
  1536. obj\init.obj: init.c \
  1537.               main.h \
  1538.               resids.h \
  1539.               dialogids.h \
  1540.               structs.h \
  1541.               msgheader.h \
  1542.               areaman\areaman.h \
  1543.               areaman\folderman.h \
  1544.               init.h \
  1545.               utility.h \
  1546.               msglist.h \
  1547.               handlemsg\handlemsg.h \
  1548.               ccmanage.h \
  1549.               finddlg.h \
  1550.               markmanage.h \
  1551.               nlbrowser.h \
  1552.               cfgfile_interface.h \
  1553.               nickmanage.h \
  1554.               echomanager.h \
  1555.               templatedlg.h \
  1556.               printsetup.h \
  1557.               toolbarconfig.h \
  1558.               request_manage.h \
  1559.               dump\expt.h
  1560.  @echo Compiling %s ...
  1561.  @$(CC) /Fo$@ %s
  1562.  
  1563. obj\lookups.obj: lookups.c \
  1564.                  main.h \
  1565.                  resids.h \
  1566.                  structs.h \
  1567.                  msgheader.h \
  1568.                  fltv7\fltv7.h \
  1569.                  dialogids.h \
  1570.                  areaman\areaman.h \
  1571.                  utility.h \
  1572.                  util\addrcnv.h \
  1573.                  lookups.h
  1574.  @echo Compiling %s ...
  1575.  @$(CC) /Fo$@ %s
  1576.  
  1577. obj\main.obj: main.c \
  1578.               main.h \
  1579.               version.h \
  1580.               structs.h \
  1581.               msgheader.h \
  1582.               areaman\areaman.h \
  1583.               areaman\folderman.h \
  1584.               dialogs.h \
  1585.               dialogids.h \
  1586.               resids.h \
  1587.               messages.h \
  1588.               controls\editwin.h \
  1589.               controls\statline.h \
  1590.               controls\msgviewer.h \
  1591.               controls\toolbar.h \
  1592.               handlemsg\handlemsg.h \
  1593.               handlemsg\kludgeapi.h \
  1594.               init.h \
  1595.               help.h \
  1596.               areadlg.h \
  1597.               areascan.h \
  1598.               mainwindow.h \
  1599.               msglist.h \
  1600.               setupdlg.h \
  1601.               finddlg.h \
  1602.               pipeserv.h \
  1603.               utility.h \
  1604.               cclist.h \
  1605.               templatedlg.h \
  1606.               savemsg.h \
  1607.               fltv7\fltv7.h \
  1608.               lookups.h \
  1609.               attachcheck.h \
  1610.               threadlist.h \
  1611.               secwin.h \
  1612.               ccmanage.h \
  1613.               rxfolder.h \
  1614.               rexxexec.h \
  1615.               markmanage.h \
  1616.               nlbrowser.h \
  1617.               nickmanage.h \
  1618.               nicknames.h \
  1619.               echomanager.h \
  1620.               printsetup.h \
  1621.               toolbarconfig.h \
  1622.               request.h \
  1623.               request_manage.h \
  1624.               dump\expt.h \
  1625.               util\addrcnv.h
  1626.  @echo Compiling %s ...
  1627.  @$(CC) /Fo$@ %s
  1628.  
  1629. obj\mainwindow.obj: mainwindow.c \
  1630.                     main.h \
  1631.                     structs.h \
  1632.                     msgheader.h \
  1633.                     areaman\areaman.h \
  1634.                     dialogids.h \
  1635.                     resids.h \
  1636.                     messages.h \
  1637.                     handlemsg\handlemsg.h \
  1638.                     handlemsg\kludgeapi.h \
  1639.                     utility.h \
  1640.                     mainwindow.h \
  1641.                     controls\editwin.h \
  1642.                     controls\msgviewer.h \
  1643.                     controls\statline.h \
  1644.                     finddlg.h \
  1645.                     markmanage.h \
  1646.                     controls\toolbar.h \
  1647.                     toolbarconfig.h \
  1648.                     util\addrcnv.h
  1649.  @echo Compiling %s ...
  1650.  @$(CC) /Fo$@ %s
  1651.  
  1652. obj\markmanage.obj: markmanage.c \
  1653.                     main.h \
  1654.                     structs.h \
  1655.                     msgheader.h \
  1656.                     markmanage.h \
  1657.                     areaman\areaman.h
  1658.  @echo Compiling %s ...
  1659.  @$(CC) /Fo$@ %s
  1660.  
  1661. obj\msglist.obj: msglist.c \
  1662.                  main.h \
  1663.                  resids.h \
  1664.                  messages.h \
  1665.                  structs.h \
  1666.                  msgheader.h \
  1667.                  areaman\areaman.h \
  1668.                  dialogids.h \
  1669.                  handlemsg\handlemsg.h \
  1670.                  handlemsg\kludgeapi.h \
  1671.                  msglist.h \
  1672.                  utility.h \
  1673.                  areadlg.h \
  1674.                  savemsg.h \
  1675.                  controls\mlist.h \
  1676.                  controls\clrsel.h \
  1677.                  printsetup.h \
  1678.                  printmsg\printmsg.h \
  1679.                  dump\expt.h
  1680.  @echo Compiling %s ...
  1681.  @$(CC) /Fo$@ %s
  1682.  
  1683. obj\nickmanage.obj: nickmanage.c \
  1684.                     main.h \
  1685.                     structs.h \
  1686.                     nickmanage.h
  1687.  @echo Compiling %s ...
  1688.  @$(CC) /Fo$@ %s
  1689.  
  1690. obj\nicknames.obj: nicknames.c \
  1691.                    main.h \
  1692.                    resids.h \
  1693.                    messages.h \
  1694.                    structs.h \
  1695.                    msgheader.h \
  1696.                    areaman\areaman.h \
  1697.                    mainwindow.h \
  1698.                    fltv7\fltv7.h \
  1699.                    lookups.h \
  1700.                    dialogids.h \
  1701.                    utility.h \
  1702.                    handlemsg\handlemsg.h \
  1703.                    util\addrcnv.h \
  1704.                    controls\attrselect.h \
  1705.                    nickmanage.h \
  1706.                    nicknames.h
  1707.  @echo Compiling %s ...
  1708.  @$(CC) /Fo$@ %s
  1709.  
  1710. obj\nlbrowser.obj: nlbrowser.c \
  1711.                    main.h \
  1712.                    resids.h \
  1713.                    messages.h \
  1714.                    structs.h \
  1715.                    msgheader.h \
  1716.                    areaman\areaman.h \
  1717.                    dialogids.h \
  1718.                    fltv7\fltv7.h \
  1719.                    fltv7\fltv7structs.h \
  1720.                    fltv7\v7browse.h \
  1721.                    utility.h \
  1722.                    lookups.h \
  1723.                    nodedrag.h \
  1724.                    nlbrowser.h \
  1725.                    dump\expt.h
  1726.  @echo Compiling %s ...
  1727.  @$(CC) /Fo$@ %s
  1728.  
  1729. obj\pipeserv.obj: pipeserv.c \
  1730.                   main.h \
  1731.                   version.h \
  1732.                   structs.h \
  1733.                   msgheader.h \
  1734.                   areaman\areaman.h \
  1735.                   pipeserv.h \
  1736.                   handlemsg\handlemsg.h \
  1737.                   handlemsg\kludgeapi.h \
  1738.                   utility.h \
  1739.                   areadlg.h \
  1740.                   areascan.h \
  1741.                   asciitable.h \
  1742.                   dump\expt.h
  1743.  @echo Compiling %s ...
  1744.  @$(CC) /Fo$@ %s
  1745.  
  1746. obj\printsetup.obj: printsetup.c \
  1747.                     main.h \
  1748.                     structs.h \
  1749.                     msgheader.h \
  1750.                     areaman\areaman.h \
  1751.                     dialogids.h \
  1752.                     resids.h \
  1753.                     utility.h \
  1754.                     controls\fontdisp.h \
  1755.                     printsetup.h \
  1756.                     printmsg\setup.h
  1757.  @echo Compiling %s ...
  1758.  @$(CC) /Fo$@ %s
  1759.  
  1760. obj\request.obj: request.c \
  1761.                  main.h \
  1762.                  structs.h \
  1763.                  dialogids.h \
  1764.                  messages.h \
  1765.                  resids.h \
  1766.                  msgheader.h \
  1767.                  areaman\areaman.h \
  1768.                  utility.h \
  1769.                  dialogs.h \
  1770.                  setupdlg.h \
  1771.                  finddlg.h \
  1772.                  controls\editwin.h \
  1773.                  controls\listbox.h \
  1774.                  fltv7\fltv7.h \
  1775.                  lookups.h \
  1776.                  request_manage.h \
  1777.                  request.h
  1778.  @echo Compiling %s ...
  1779.  @$(CC) /Fo$@ %s
  1780.  
  1781. obj\request_manage.obj: request_manage.c \
  1782.                         main.h \
  1783.                         structs.h \
  1784.                         dump\expt.h \
  1785.                         request_manage.h
  1786.  @echo Compiling %s ...
  1787.  @$(CC) /Fo$@ %s
  1788.  
  1789. obj\rexxexec.obj: rexxexec.c \
  1790.                   main.h \
  1791.                   resids.h \
  1792.                   messages.h \
  1793.                   structs.h \
  1794.                   msgheader.h \
  1795.                   areaman\areaman.h \
  1796.                   dialogids.h \
  1797.                   rexxexec.h \
  1798.                   mainwindow.h \
  1799.                   savemsg.h \
  1800.                   utility.h \
  1801.                   fltv7\fltv7.h \
  1802.                   lookups.h \
  1803.                   ccmanage.h \
  1804.                   controls\editwin.h \
  1805.                   handlemsg\handlemsg.h \
  1806.                   handlemsg\kludgeapi.h \
  1807.                   util\addrcnv.h \
  1808.                   dump\expt.h
  1809.  @echo Compiling %s ...
  1810.  @$(CC) /Fo$@ %s
  1811.  
  1812. obj\rxfolder.obj: rxfolder.c \
  1813.                   main.h \
  1814.                   resids.h \
  1815.                   messages.h \
  1816.                   structs.h \
  1817.                   msgheader.h \
  1818.                   dialogids.h \
  1819.                   areaman\areaman.h \
  1820.                   utility.h \
  1821.                   setupdlg.h \
  1822.                   rxfolder.h \
  1823.                   controls\editwin.h \
  1824.                   util\fltutil.h \
  1825.                   rexxexec.h
  1826.  @echo Compiling %s ...
  1827.  @$(CC) /Fo$@ %s
  1828.  
  1829. obj\savemsg.obj: savemsg.c \
  1830.                  main.h \
  1831.                  resids.h \
  1832.                  messages.h \
  1833.                  structs.h \
  1834.                  msgheader.h \
  1835.                  areaman\areaman.h \
  1836.                  savemsg.h \
  1837.                  handlemsg\handlemsg.h \
  1838.                  handlemsg\kludgeapi.h \
  1839.                  utility.h \
  1840.                  dialogids.h \
  1841.                  util\addrcnv.h
  1842.  @echo Compiling %s ...
  1843.  @$(CC) /Fo$@ %s
  1844.  
  1845. obj\secwin.obj: secwin.c \
  1846.                 main.h \
  1847.                 msgheader.h \
  1848.                 controls\msgviewer.h \
  1849.                 controls\statline.h \
  1850.                 controls\clrsel.h \
  1851.                 controls\mlist.h \
  1852.                 controls\toolbar.h \
  1853.                 controls\fontdisp.h \
  1854.                 controls\editwin.h \
  1855.                 controls\listbox.h \
  1856.                 controls\attrselect.h
  1857.  @echo Compiling %s ...
  1858.  @$(CC) /Fo$@ %s
  1859.  
  1860. obj\setupdlg.obj: setupdlg.c \
  1861.                   main.h \
  1862.                   resids.h \
  1863.                   messages.h \
  1864.                   structs.h \
  1865.                   msgheader.h \
  1866.                   areaman\areaman.h \
  1867.                   dialogs.h \
  1868.                   dialogids.h \
  1869.                   init.h \
  1870.                   setupdlg.h \
  1871.                   utility.h \
  1872.                   controls\editwin.h \
  1873.                   controls\msgviewer.h \
  1874.                   controls\clrsel.h \
  1875.                   util\fltutil.h \
  1876.                   util\addrcnv.h \
  1877.                   cfgfile_interface.h
  1878.  @echo Compiling %s ...
  1879.  @$(CC) /Fo$@ %s
  1880.  
  1881. obj\templatedlg.obj: templatedlg.c \
  1882.                      main.h \
  1883.                      resids.h \
  1884.                      messages.h \
  1885.                      structs.h \
  1886.                      msgheader.h \
  1887.                      areaman\areaman.h \
  1888.                      dialogids.h \
  1889.                      templatedlg.h \
  1890.                      setupdlg.h \
  1891.                      utility.h
  1892.  @echo Compiling %s ...
  1893.  @$(CC) /Fo$@ %s
  1894.  
  1895. obj\threadlist.obj: threadlist.c \
  1896.                     main.h \
  1897.                     resids.h \
  1898.                     messages.h \
  1899.                     structs.h \
  1900.                     msgheader.h \
  1901.                     dialogids.h \
  1902.                     areaman\areaman.h \
  1903.                     handlemsg\handlemsg.h \
  1904.                     threadlist.h \
  1905.                     msglist.h \
  1906.                     utility.h \
  1907.                     threadlistsettings.h \
  1908.                     areadlg.h \
  1909.                     dialogs.h \
  1910.                     util\fltutil.h \
  1911.                     dump\expt.h
  1912.  @echo Compiling %s ...
  1913.  @$(CC) /Fo$@ %s
  1914.  
  1915. obj\threadlistsettings.obj: threadlistsettings.c \
  1916.                             main.h \
  1917.                             structs.h \
  1918.                             msgheader.h \
  1919.                             areaman\areaman.h \
  1920.                             areadlg.h \
  1921.                             controls\clrsel.h \
  1922.                             dialogids.h \
  1923.                             resids.h \
  1924.                             utility.h \
  1925.                             threadlistsettings.h
  1926.  @echo Compiling %s ...
  1927.  @$(CC) /Fo$@ %s
  1928.  
  1929. obj\toolbarconfig.obj: toolbarconfig.c \
  1930.                        main.h \
  1931.                        structs.h \
  1932.                        msgheader.h \
  1933.                        areaman\areaman.h \
  1934.                        utility.h \
  1935.                        resids.h \
  1936.                        dialogids.h \
  1937.                        controls\toolbar.h \
  1938.                        toolbarconfig.h
  1939.  @echo Compiling %s ...
  1940.  @$(CC) /Fo$@ %s
  1941.  
  1942. obj\utility.obj: utility.c \
  1943.                  main.h \
  1944.                  resids.h \
  1945.                  messages.h \
  1946.                  structs.h \
  1947.                  msgheader.h \
  1948.                  areaman\areaman.h \
  1949.                  dialogs.h \
  1950.                  dialogids.h \
  1951.                  utility.h \
  1952.                  setupdlg.h \
  1953.                  handlemsg\handlemsg.h \
  1954.                  util\fltutil.h \
  1955.                  util\addrcnv.h \
  1956.                  mainwindow.h
  1957.  @echo Compiling %s ...
  1958.  @$(CC) /Fo$@ %s
  1959.  
  1960.