Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4269 lines
141 KiB

  1. #
  2. # For daytona, this file is designed to be included from 3 levels below
  3. # ie, dayona\$(LANGUAGE)inf\srv, or daytona\$(LANGUAGE)inf\wks
  4. #
  5. # Note: NEC98 builds go through this file twice, the second time
  6. # with "ALT_PROJECT"=="NEC_98". These latter produce a subset
  7. # of binaries which are only used on NEC98 machines.
  8. #
  9. !IFNDEF LANGUAGE
  10. LANGUAGE=usa
  11. !ENDIF
  12. #
  13. # ANSI_CODEPAGE: ANSI codepage for a given language.
  14. #
  15. # LANGUAGE_DRVCAB: Offset to the language-specific list of files
  16. # contained in driver.cab:
  17. # setup\inf\win4\inf\lib\<language_drvcab>\<arch>\sorted.lst
  18. # European languages having a very similar set of files as US may
  19. # be able to leverage the US sorted.lst. Far East languages have
  20. # extra files and their own language-specific list.
  21. #
  22. # LCID: Locale ID in hex.
  23. #
  24. # UNITEXT_OPT: Unitext.exe command line options to specify the ANSI codepage
  25. # for a given language. Used for Multibuyte -> Unicode conversion.
  26. #
  27. # Defaults
  28. ANSI_CODEPAGE=1252
  29. LCID=409
  30. LANGUAGE_DRVCAB=$(LANGUAGE)
  31. !if "$(LANGUAGE)"=="ARA" || "$(LANGUAGE)"=="ara"
  32. # Arabic
  33. ANSI_CODEPAGE=1256
  34. LCID=401
  35. !elseif "$(LANGUAGE)"=="BR" || "$(LANGUAGE)"=="br"
  36. # Portuguese, Brazilian
  37. ANSI_CODEPAGE=1252
  38. LCID=416
  39. !elseif "$(LANGUAGE)"=="CHH" || "$(LANGUAGE)"=="chh"
  40. # Chinese, Traditional (Hong Kong)
  41. ANSI_CODEPAGE=950
  42. LCID=C04
  43. !elseif "$(LANGUAGE)"=="CHS" || "$(LANGUAGE)"=="chs"
  44. # Chinese, Simplified
  45. ANSI_CODEPAGE=936
  46. LCID=804
  47. !elseif "$(LANGUAGE)"=="CHT" || "$(LANGUAGE)"=="cht"
  48. # Chinese, Traditional (Taiwan)
  49. ANSI_CODEPAGE=950
  50. LCID=404
  51. !elseif "$(LANGUAGE)"=="CS" || "$(LANGUAGE)"=="cs"
  52. # Czech
  53. ANSI_CODEPAGE=1250
  54. LCID=405
  55. !elseif "$(LANGUAGE)"=="DA" || "$(LANGUAGE)"=="da"
  56. # Danish
  57. ANSI_CODEPAGE=1252
  58. LCID=406
  59. !elseif "$(LANGUAGE)"=="EL" || "$(LANGUAGE)"=="el"
  60. # Greek
  61. ANSI_CODEPAGE=1253
  62. LCID=408
  63. !elseif "$(LANGUAGE)"=="ES" || "$(LANGUAGE)"=="es"
  64. # Spanish
  65. ANSI_CODEPAGE=1252
  66. LCID=C0A
  67. !elseif "$(LANGUAGE)"=="FI" || "$(LANGUAGE)"=="fi"
  68. # Finish
  69. ANSI_CODEPAGE=1252
  70. LCID=40b
  71. !elseif "$(LANGUAGE)"=="FR" || "$(LANGUAGE)"=="fr"
  72. # French
  73. ANSI_CODEPAGE=1252
  74. LCID=40C
  75. !elseif "$(LANGUAGE)"=="GER" || "$(LANGUAGE)"=="ger"
  76. # German
  77. ANSI_CODEPAGE=1252
  78. LCID=407
  79. !elseif "$(LANGUAGE)"=="HEB" || "$(LANGUAGE)"=="heb"
  80. # Hebrew
  81. ANSI_CODEPAGE=1255
  82. LCID=40D
  83. !elseif "$(LANGUAGE)"=="HU" || "$(LANGUAGE)"=="hu"
  84. # Hungarian
  85. ANSI_CODEPAGE=1250
  86. LCID=40e
  87. !elseif "$(LANGUAGE)"=="IT" || "$(LANGUAGE)"=="it"
  88. # Italian
  89. ANSI_CODEPAGE=1252
  90. LCID=410
  91. !elseif "$(LANGUAGE)"=="JPN" || "$(LANGUAGE)"=="jpn"
  92. # Japanese
  93. ANSI_CODEPAGE=932
  94. LCID=411
  95. !elseif "$(LANGUAGE)"=="KOR" || "$(LANGUAGE)"=="kor"
  96. # Korean
  97. ANSI_CODEPAGE=949
  98. LCID=412
  99. !elseif "$(LANGUAGE)"=="NL" || "$(LANGUAGE)"=="nl"
  100. # Dutch
  101. ANSI_CODEPAGE=1252
  102. LCID=413
  103. !elseif "$(LANGUAGE)"=="NO" || "$(LANGUAGE)"=="no"
  104. # Norwegian
  105. ANSI_CODEPAGE=1252
  106. LCID=414
  107. !elseif "$(LANGUAGE)"=="PL" || "$(LANGUAGE)"=="pl"
  108. # Polish
  109. ANSI_CODEPAGE=1250
  110. LCID=415
  111. !elseif "$(LANGUAGE)"=="PSU" || "$(LANGUAGE)"=="psu"
  112. # Pseudo-loc
  113. ANSI_CODEPAGE=1253
  114. LCID=408
  115. !elseif "$(LANGUAGE)"=="PT" || "$(LANGUAGE)"=="pt"
  116. # Portuguese
  117. ANSI_CODEPAGE=1252
  118. LCID=816
  119. !elseif "$(LANGUAGE)"=="RU" || "$(LANGUAGE)"=="ru"
  120. # Russian
  121. ANSI_CODEPAGE=1251
  122. LCID=419
  123. !elseif "$(LANGUAGE)"=="SV" || "$(LANGUAGE)"=="sv"
  124. # Swedish
  125. ANSI_CODEPAGE=1252
  126. LCID=41D
  127. !elseif "$(LANGUAGE)"=="TR" || "$(LANGUAGE)"=="tr"
  128. # Turkish
  129. ANSI_CODEPAGE=1254
  130. LCID=41F
  131. !endif
  132. UNITEXT_OPT=-m -$(ANSI_CODEPAGE)
  133. !IF "$(TARGET_DIRECTORY)"=="i386" || "$(TARGET_DIRECTORY)"=="I386"
  134. PLATFORM_SWITCH=i
  135. !ELSEIF "$(TARGET_DIRECTORY)"=="ia64" || "$(TARGET_DIRECTORY)"=="IA64"
  136. PLATFORM_SWITCH=m
  137. !ELSEIF "$(TARGET_DIRECTORY)"=="amd64" || "$(TARGET_DIRECTORY)"=="AMD64"
  138. PLATFORM_SWITCH=a
  139. !ELSE
  140. ! ERROR Invalid Platform Switch for infs
  141. !ENDIF
  142. !ifndef QFE_NUM
  143. QFE_NUM=0
  144. !endif
  145. STAMP=stampinf -f $@
  146. PREFLAGS=/DLANGUAGE_ID=0x0$(LCID) -nologo /EP
  147. !if $(PRERELEASE)
  148. PREFLAGS=/DPRERELEASE $(PREFLAGS)
  149. !endif
  150. !if $(PRERELEASE_IDWLOG)
  151. PREFLAGS=/DPRERELEASE_IDWLOG $(PREFLAGS)
  152. !endif
  153. PREFILTFLAGS=/EP -DPLATFORM_SWITCH='$(PLATFORM_SWITCH)' -DPRODSWITCH='$(PRODSWITCH)'
  154. _LNG=..\..\..\$(LANGUAGE)
  155. _LIBLNG=..\..\..\lib\$(LANGUAGE)
  156. _INX=..\..\..
  157. _INF=$(O)
  158. _RSINF=$(O)\realsign
  159. BUILD_COVINF=0
  160. !if "$(LANGUAGE)"=="usa" || "$(LANGUAGE)"=="USA"
  161. !if !$(WIN64)
  162. _COVINF=$(O)\covinf
  163. _RSCOVINF=$(O)\covinf\realsign
  164. BUILD_COVINF=1
  165. !endif
  166. !endif
  167. STRIPCHAR=call $(_INX)\stripchar.cmd
  168. !ifndef BUILD_SPECIFIC_INFS
  169. !IF "$(ALT_PROJECT_TARGET)" == "CHH"
  170. make_infs:$(O)\hivesft.inf
  171. !ELSE
  172. make_infs:$(O)\layout.inf \
  173. $(_RSINF)\layout.inf \
  174. !IF $(BUILD_COVINF)
  175. $(_COVINF)\layout.inx \
  176. $(_COVINF)\layout.inf \
  177. $(_RSCOVINF)\layout.inf \
  178. !endif
  179. $(O)\testroot.cer \
  180. $(O)\layout.inx \
  181. $(O)\layout.txt \
  182. $(O)\1394.inf \
  183. $(O)\1394vdbg.inf \
  184. $(O)\61883.inf \
  185. $(O)\accessor.inf \
  186. !if $(WIN64)
  187. $(O)\accessor.wow \
  188. !endif
  189. !IF !$(WIN64)
  190. $(O)\acerscan.inf \
  191. !endif
  192. $(O)\acpi.inf \
  193. $(O)\apps.inf \
  194. $(O)\apcompat.inf \
  195. !if $(WIN64)
  196. $(O)\apcompat.wow \
  197. !endif
  198. !if "$(PRODSWITCH)" == "w"
  199. $(O)\apphlpui.inf \
  200. !endif
  201. $(O)\asroc.inf \
  202. $(O)\avc.inf \
  203. $(O)\battery.inf \
  204. $(O)\bda.inf \
  205. !if $(386)
  206. $(O)\bfcab.inf \
  207. !endif
  208. $(O)\biosinfo.inf \
  209. !if $(386)
  210. $(O)\brmfcmdm.inf \
  211. $(O)\brmfcmf.inf \
  212. $(O)\brmfcsto.inf \
  213. $(O)\brmfcumd.inf \
  214. $(O)\brmfcwia.inf \
  215. $(O)\brmfport.inf \
  216. !endif
  217. $(O)\camdsh20.inf \
  218. $(O)\camvid20.inf \
  219. $(O)\camvid30.inf \
  220. $(O)\ccdecode.inf \
  221. $(O)\cdrom.inf \
  222. $(O)\certclas.inf \
  223. $(O)\communic.inf \
  224. !if $(WIN64)
  225. $(O)\communic.wow \
  226. !endif
  227. $(O)\compatws.inf \
  228. $(O)\cpu.inf \
  229. $(O)\cyclad-z.inf \
  230. $(O)\cyclom-y.inf \
  231. $(O)\cyyport.inf \
  232. $(O)\cyzport.inf \
  233. $(O)\dbc.inf \
  234. $(O)\dcfirst.inf \
  235. $(O)\dcup.inf \
  236. $(O)\dcup5.inf \
  237. $(O)\defltdc.inf \
  238. $(O)\defltsv.inf \
  239. $(O)\defltwk.inf \
  240. $(O)\defltp.inf \
  241. !IF $(BUILD_COVINF)
  242. $(_COVINF)\defltsv.inf \
  243. $(_COVINF)\defltwk.inf \
  244. !endif
  245. $(O)\devxprop.inf \
  246. $(O)\dfrg.inf \
  247. $(O)\disk.inf \
  248. !IF !$(WIN64)
  249. $(O)\dimaps.inf \
  250. !endif
  251. $(O)\dispdet.inf \
  252. $(O)\display.inf \
  253. $(O)\dmreg.inf \
  254. $(O)\dosnet.inf \
  255. $(_RSINF)\dosnet.inf \
  256. !IF $(BUILD_COVINF)
  257. $(_COVINF)\dosnet.inf \
  258. $(_RSCOVINF)\dosnet.inf \
  259. !endif
  260. $(O)\dot4.inf \
  261. $(O)\dot4prt.inf \
  262. $(O)\dpup.inf \
  263. $(O)\drvindex.inf \
  264. $(O)\drivercab.inf \
  265. $(O)\dshowext.inf \
  266. $(O)\dsup.inf \
  267. $(O)\dsupt.inf \
  268. $(O)\dvd.inf \
  269. $(O)\dwup.inf \
  270. !IF !$(WIN64)
  271. $(O)\epcfw2k.inf \
  272. $(O)\epstw2k.inf \
  273. $(O)\epsnscan.inf \
  274. !endif
  275. $(O)\epsnmfp.inf \
  276. $(O)\epstw2k.inf \
  277. !if "$(PRODSWITCH)" == "w"
  278. $(O)\ermui.inf \
  279. !endif
  280. !IF $(BUILD_COVINF)
  281. $(_COVINF)\dsup.inf \
  282. $(_COVINF)\dsupt.inf \
  283. $(_COVINF)\dwup.inf \
  284. !endif
  285. $(O)\exclude.inf \
  286. $(O)\fdc.inf \
  287. $(O)\filegen.inf \
  288. $(O)\fjtscan.inf \
  289. $(O)\flash.inf \
  290. $(O)\flpydisk.inf \
  291. $(O)\font.inf \
  292. !if !$(WIN64)
  293. $(O)\gameport.inf \
  294. !endif
  295. $(O)\games.inf \
  296. !if $(WIN64)
  297. $(O)\games.wow \
  298. !endif
  299. $(O)\genprint.inf \
  300. !if "$(PRODSWITCH)" == "w"
  301. $(O)\guidrvs.inf \
  302. !endif
  303. $(O)\hal.inf \
  304. $(O)\hiddigi.inf \
  305. $(O)\hidserv.inf \
  306. $(O)\hfltpci.inf \
  307. $(O)\hisecws.inf \
  308. $(O)\hisecdc.inf \
  309. $(O)\hivecls.inf \
  310. $(O)\hivedef.inf \
  311. $(O)\hivesft.inf \
  312. $(O)\hivesys.inf \
  313. !if $(WIN64)
  314. $(O)\hivcls32.inf \
  315. $(O)\hivsft32.inf \
  316. !endif
  317. !IF $(BUILD_COVINF)
  318. $(_COVINF)\hivesys.inf \
  319. !endif
  320. $(O)\hiveusd.inf \
  321. $(O)\hotfix.inf \
  322. !IF !$(WIN64)
  323. $(O)\hpdigwia.inf \
  324. !endif
  325. $(O)\hpojscan.inf \
  326. $(O)\hpscan.inf \
  327. $(O)\ibmvcap.inf \
  328. $(O)\icwnt5.inf \
  329. !if $(WIN64)
  330. $(O)\icwnt5.wow \
  331. !endif
  332. $(O)\ie.inf \
  333. $(O)\ieaccess.inf \
  334. !if $(WIN64)
  335. $(O)\ie.wow \
  336. !endif
  337. !if "$(PRODSWITCH)" == "w"
  338. $(O)\ie5ui.inf \
  339. !endif
  340. $(O)\icam3.inf \
  341. $(O)\icam4usb.inf \
  342. $(O)\icam5usb.inf \
  343. $(O)\image.inf \
  344. $(O)\infsect.tbl \
  345. $(O)\input.inf \
  346. $(O)\install.ins \
  347. $(O)\intl.inf \
  348. !if $(WIN64)
  349. $(O)\intl.wow \
  350. $(O)\intlinfa.wow \
  351. !endif
  352. $(O)\irbus.inf \
  353. !if $(WIN64)
  354. $(O)\is_wow64.inf \
  355. !endif
  356. $(O)\keyboard.inf \
  357. $(O)\kdk2x0.inf \
  358. !IF !$(WIN64)
  359. $(O)\kodak.inf \
  360. !endif
  361. $(O)\kdkscan.inf \
  362. $(O)\ks.inf \
  363. $(O)\kscaptur.inf \
  364. $(O)\ksfilter.inf \
  365. !if "$(PRODSWITCH)" == "w"
  366. $(O)\langinst.inf \
  367. !endif
  368. $(O)\legacy.inf \
  369. $(O)\legcydrv.inf \
  370. !if $(386)
  371. $(O)\lwusbhid.inf \
  372. $(O)\lwngmadi.inf \
  373. !endif
  374. $(O)\machine.inf \
  375. $(O)\mchgr.inf \
  376. $(O)\mdac.inf \
  377. !if $(WIN64)
  378. $(O)\mdac.wow \
  379. !endif
  380. $(O)\mdacwx86.inf \
  381. $(O)\memcard.inf \
  382. $(O)\mednames.txt \
  383. $(O)\memory.inf \
  384. $(O)\memstpci.inf \
  385. $(O)\mf.inf \
  386. $(O)\mfsocket.inf \
  387. !if $(386)
  388. $(O)\migdb.inf \
  389. !endif
  390. $(O)\minioc.inf \
  391. $(O)\mmdriver.inf \
  392. $(O)\mmopt.inf \
  393. !if $(WIN64)
  394. $(O)\mmopt.wow \
  395. !endif
  396. !if !$(WIN64)
  397. !if "$(PRODSWITCH)" == "w"
  398. $(O)\moviemui.inf \
  399. !endif
  400. !endif
  401. $(O)\mpe.inf \
  402. $(O)\mscpqpa1.inf \
  403. $(O)\msdv.inf \
  404. $(O)\mshdc.inf \
  405. $(O)\msinfo32.inf \
  406. !if $(WIN64)
  407. $(O)\msinfo32.wow \
  408. !endif
  409. $(O)\msmail.inf \
  410. $(O)\msmouse.inf \
  411. !IF !$(WIN64)
  412. $(O)\msmscsi.inf \
  413. $(O)\msmusb.inf \
  414. !endif
  415. $(O)\msnike.inf \
  416. $(O)\msoe50.inf \
  417. !if $(WIN64)
  418. $(O)\msoe50.wow \
  419. !endif
  420. $(O)\msports.inf \
  421. $(O)\msrio8.inf \
  422. $(O)\msrio.inf \
  423. $(O)\mstape.inf \
  424. $(O)\mstask.inf \
  425. !if $(WIN64)
  426. $(O)\mstask.wow \
  427. !endif
  428. !if "$(PRODSWITCH)" == "w"
  429. $(O)\mui.inf \
  430. !endif
  431. $(O)\multimed.inf \
  432. !if $(WIN64)
  433. $(O)\multimed.wow \
  434. !endif
  435. $(O)\multiprt.inf \
  436. $(O)\mxboard.inf \
  437. $(O)\mxport.inf \
  438. $(O)\nabtsfec.inf \
  439. $(O)\ndisip.inf \
  440. $(O)\netbeac.inf \
  441. $(O)\netdav.inf \
  442. $(O)\netip6.inf \
  443. $(O)\nettun.inf \
  444. $(O)\ntapm.inf \
  445. $(O)\ntautorun.inf \
  446. !IF !$(WIN64)
  447. $(O)\ntgrip.inf \
  448. !endif
  449. $(O)\ntprint.inf \
  450. $(O)\ocmri.inf \
  451. $(O)\oeaccess.inf \
  452. $(O)\oobe.inf \
  453. !if "$(PRODSWITCH)" == "w"
  454. $(O)\oobemui.inf \
  455. !endif
  456. $(O)\optional.inf \
  457. !if $(WIN64)
  458. $(O)\optional.wow \
  459. !endif
  460. $(O)\ovcam.inf \
  461. $(O)\ovcomp.inf \
  462. $(O)\ovsound.inf \
  463. $(O)\pcmcia.inf \
  464. $(O)\perms.inf \
  465. $(O)\phdsext.inf \
  466. $(O)\phil1vid.inf \
  467. $(O)\phil2vid.inf \
  468. $(O)\phildec.inf \
  469. $(O)\philtune.inf \
  470. $(O)\pinball.inf \
  471. !if $(WIN64)
  472. $(O)\pinball.wow \
  473. !endif
  474. !if "$(PRODSWITCH)" == "w"
  475. $(O)\pchmui.inf \
  476. !endif
  477. $(O)\pchealth.inf \
  478. !IF !$(WIN64)
  479. $(O)\pmxmcro.inf \
  480. !endif
  481. $(O)\pnpscsi.inf \
  482. $(O)\ppa.inf \
  483. $(O)\ppa3.inf \
  484. $(O)\printupg.inf \
  485. $(O)\prod128.ini \
  486. $(O)\prodspec.ini \
  487. $(O)\prtupg9x.inf \
  488. $(O)\ptpusb.inf \
  489. $(O)\ramdisk.inf \
  490. $(O)\reminst.inf \
  491. $(O)\ricoh.inf \
  492. $(O)\rinorprt.sif \
  493. $(O)\riprep.inf \
  494. $(O)\ristndrd.sif \
  495. $(O)\rootsec.inf \
  496. $(O)\rsoptcom.inf \
  497. $(O)\rsoptwks.inf \
  498. $(O)\sbp2.inf \
  499. $(O)\sceregvl.inf \
  500. !if !$(WIN64)
  501. $(O)\scsi.inf \
  502. !endif
  503. $(O)\scsidev.inf \
  504. $(O)\sdwndr2k.inf \
  505. $(O)\securedc.inf \
  506. $(O)\securews.inf \
  507. $(O)\secrecs.inf \
  508. $(O)\sfcgen.inf \
  509. $(O)\shell.inf \
  510. $(O)\shl_img.inf \
  511. !if "$(PRODSWITCH)" == "w"
  512. $(O)\shellmui.inf \
  513. !endif
  514. !if "$(PRODSWITCH)" == "w"
  515. $(O)\skinsmui.inf \
  516. $(O)\wmtrmui.inf \
  517. !endif
  518. $(O)\slip.inf \
  519. $(O)\smartcrd.inf \
  520. $(O)\sonypvu1.inf \
  521. $(O)\spmap.txt \
  522. !if !$(WIN64)
  523. $(O)\sr.inf \
  524. !endif
  525. $(O)\srchasst.inf \
  526. !if "$(PRODSWITCH)" == "w"
  527. $(O)\srchmui.inf \
  528. !endif
  529. !IF !$(WIN64)
  530. $(O)\srusbusd.inf \
  531. !endif
  532. $(O)\sti.inf \
  533. !IF !$(WIN64)
  534. $(O)\stillcam.inf \
  535. !endif
  536. $(O)\streamip.inf \
  537. $(O)\swflash.inf \
  538. $(O)\swnt.inf \
  539. $(O)\sysoc.inf \
  540. $(O)\syscomp.inf \
  541. $(O)\syssetup.inf \
  542. $(O)\syssetup.inx \
  543. !if $(WIN64)
  544. $(O)\syssetup.wow \
  545. !endif
  546. !IF $(BUILD_COVINF)
  547. $(_COVINF)\syssetup.inf \
  548. !endif
  549. !if $(386)
  550. !if "$(PRODSWITCH)" == "w"
  551. $(O)\tabletpc.inf \
  552. $(O)\tabletmui.inf \
  553. !endif
  554. !endif
  555. $(O)\tape.inf \
  556. !if $(386)
  557. !if "$(PRODSWITCH)" == "w"
  558. $(O)\tourmui.inf \
  559. !endif
  560. !endif
  561. $(O)\tsbvcap.inf \
  562. $(O)\txtsetup.sif \
  563. $(O)\txtsetup.inx \
  564. $(_RSINF)\txtsetup.sif \
  565. !IF $(BUILD_COVINF)
  566. $(_COVINF)\txtsetup.sif \
  567. $(_RSCOVINF)\txtsetup.sif \
  568. !endif
  569. !if !$(WIN64)
  570. $(O)\umax.inf \
  571. $(O)\umaxpp.inf \
  572. !endif
  573. $(O)\unknown.inf \
  574. $(O)\update.inf \
  575. $(O)\usb.inf \
  576. $(O)\usbport.inf \
  577. $(O)\usbstor.inf \
  578. $(O)\usbprint.inf \
  579. !if $(386)
  580. $(O)\usermig.inf \
  581. !endif
  582. $(O)\vgx.inf \
  583. !if $(WIN64)
  584. $(O)\vgx.wow \
  585. !endif
  586. $(O)\volume.inf \
  587. $(O)\volsnap.inf \
  588. !if $(386)
  589. $(O)\vscandb.inf \
  590. !endif
  591. $(O)\wdmjoy.inf \
  592. !if $(WIN64)
  593. !if "$(PRODSWITCH)" == "w"
  594. $(O)\wie5ui.inf \
  595. !endif
  596. !endif
  597. !if $(WIN64)
  598. !if "$(PRODSWITCH)" == "w"
  599. $(O)\wermui.inf \
  600. !endif
  601. !endif
  602. !if $(386)
  603. $(O)\win95upg.inf \
  604. $(O)\wkstamig.inf \
  605. !endif
  606. $(O)\au.inf \
  607. $(O)\wab50.inf \
  608. !if $(WIN64)
  609. $(O)\wab50.wow \
  610. !endif
  611. $(O)\wbemoc.inf \
  612. !if $(WIN64)
  613. $(O)\wbemoc.wow \
  614. !endif
  615. $(O)\wbemsnmp.inf \
  616. $(O)\wceusbsh.inf \
  617. !if "$(PRODSWITCH)" == "w"
  618. $(O)\wmprfmui.inf \
  619. !endif
  620. $(O)\sapi5.inf \
  621. $(O)\wordpad.inf \
  622. !if $(WIN64)
  623. $(O)\wordpad.wow \
  624. $(O)\wowexcp.txt \
  625. $(O)\wowfile.inf \
  626. $(O)\wowfiled.inf \
  627. $(O)\wowlist.inf \
  628. $(O)\wowfrege.inf \
  629. $(O)\wowfregc.inf \
  630. $(O)\wowfrego.inf \
  631. !endif
  632. $(O)\wsh.inf \
  633. !if $(WIN64)
  634. $(O)\wsh.wow \
  635. !endif
  636. $(O)\wstcodec.inf \
  637. $(O)\xscan_xp.inf
  638. !ENDIF
  639. !else # ifdef BUILD_SPECIFIC_INFS
  640. #
  641. # Dev time saver -- build only the $(O) targets specified by
  642. # BUILD_SPECIFIC_INFS. This variable is a space-separated list such as
  643. #
  644. # set BUILD_SPECIFIC_INFS=layout.inf syssetup.inf
  645. #
  646. # Does not support targets other than those in obj\i386, obj\amd64, or obj\ia64.
  647. #
  648. # NOTE: NMAKE does not support variable replacement strings in macro
  649. # search/replace. So define inference rules for known $(O) combinations
  650. #
  651. ! if "$(O)" == "obj\i386"
  652. make_infs:$(O)\$(BUILD_SPECIFIC_INFS: = obj\i386\)
  653. ! else if "$(O)" == "obj\amd64"
  654. make_infs:$(O)\$(BUILD_SPECIFIC_INFS: = obj\amd64\)
  655. ! else if "$(O)" == "obj\ia64"
  656. make_infs:$(O)\$(BUILD_SPECIFIC_INFS: = obj\ia64\)
  657. ! endif
  658. !endif # else BUILD_SPECIFIC_INFS
  659. !IFDEF BINPLACE_CMD
  660. TSBINPLACE_CMD=$(BINPLACE_CMD)
  661. RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b realsign)
  662. COVER_TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf)
  663. COVER_RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\realsign)
  664. WIN9XUPGBINPLACE_CMD=$(BINPLACE_CMD)
  665. !ENDIF
  666. !IFDEF PERSONALINF
  667. !IFDEF BINPLACE_CMD
  668. TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b perinf)
  669. RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b perinf\realsign)
  670. COVER_TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\perinf)
  671. COVER_RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\perinf\realsign)
  672. WIN9XUPGBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b ..\..\perinf\winnt32\win9xupg)
  673. !ENDIF
  674. !ENDIF
  675. !IFDEF SBSINF
  676. !IFDEF BINPLACE_CMD
  677. TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b sbsinf)
  678. RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b sbsinf\realsign)
  679. COVER_TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\sbsinf)
  680. COVER_RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\sbsinf\realsign)
  681. WIN9XUPGBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b ..\..\sbsinf\winnt32\win9xupg)
  682. !ENDIF
  683. !ENDIF
  684. !IFDEF BLAINF
  685. !IFDEF BINPLACE_CMD
  686. TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b blainf)
  687. RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b blainf\realsign)
  688. COVER_TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\blainf)
  689. COVER_RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\blainf\realsign)
  690. WIN9XUPGBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b ..\..\blainf\winnt32\win9xupg)
  691. !ENDIF
  692. !ENDIF
  693. !IFDEF SERVERINF
  694. !IFDEF BINPLACE_CMD
  695. TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b srvinf)
  696. RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b srvinf\realsign)
  697. COVER_TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\srvinf)
  698. COVER_RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\srvinf\realsign)
  699. WIN9XUPGBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b ..\..\srvinf\winnt32\win9xupg)
  700. !ENDIF
  701. !ENDIF
  702. !IFDEF ENTERPRISEINF
  703. !IFDEF BINPLACE_CMD
  704. TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b entinf)
  705. RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b entinf\realsign)
  706. COVER_TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\entinf)
  707. COVER_RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\entinf\realsign)
  708. WIN9XUPGBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b ..\..\entinf\winnt32\win9xupg)
  709. !ENDIF
  710. !ENDIF
  711. !IFDEF DATACENTERINF
  712. !IFDEF BINPLACE_CMD
  713. TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b dtcinf)
  714. RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b dtcinf\realsign)
  715. COVER_TSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\dtcinf)
  716. COVER_RSBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b covinf\dtcinf\realsign)
  717. WIN9XUPGBINPLACE_CMD=$(BINPLACE_CMD:binplace=binplace -b ..\..\dtcinf\winnt32\win9xupg)
  718. !ENDIF
  719. !ENDIF
  720. $(O)\layout.inx : $(_INX)\layout.inx
  721. $(CC) $(PREFLAGS) $** > $@
  722. !if "$(PRODSWITCH)" == "w"
  723. $(TSBINPLACE_CMD)
  724. !endif
  725. $(_COVINF)\layout.inx : $(_INX)\layout.inx $(_INX)\$(@B).mcv
  726. call MergeFiles.cmd $(_INX)\layout.inx $(_INX)\$(@B).mcv $(_COVINF)\layout.tmp
  727. $(CC) $(PREFLAGS) $(_COVINF)\layout.tmp > $@
  728. del $(_COVINF)\layout.tmp
  729. !if "$(PRODSWITCH)" == "w"
  730. $(COVER_TSBINPLACE_CMD)
  731. !endif
  732. $(O)\layout.txt : $(_LNG)\layout.txt \
  733. $(_LNG)\mednames.txt
  734. $(CC) $(PREFLAGS) $** > $@
  735. copy $(O)\$(@B).tmp1 + $(_LNG)\mednames.txt $@
  736. !if "$(PRODSWITCH)" == "w"
  737. $(TSBINPLACE_CMD)
  738. !endif
  739. del $(O)\$(@B).tmp1
  740. $(O)\syssetup.inx : $(_INX)\syssetup.inx
  741. $(CC) $(PREFLAGS) $** > $@
  742. $(O)\txtsetup.inx : $(_INX)\txtsetup.inx
  743. $(CC) $(PREFLAGS) $** > $@
  744. $(O)\dosnet.inx : $(_INX)\dosnet.inx
  745. $(CC) $(PREFLAGS) $** > $@
  746. $(_COVINF)\dosnet.inx : $(_INX)\dosnet.inx
  747. md $(_COVINF)
  748. $(CC) $(PREFLAGS) $** > $@
  749. $(_RSCOVINF)\dosnet.inx : $(_INX)\dosnet.inx
  750. md $(_RSCOVINF)
  751. $(CC) $(PREFLAGS) $** > $@
  752. $(O)\mednames.txt : $(_LNG)\mednames.txt
  753. $(CC) $(PREFLAGS) $** > $@
  754. !if "$(PRODSWITCH)" == "w"
  755. $(TSBINPLACE_CMD)
  756. !endif
  757. #
  758. # Explicit dependencies. We do it this way instead of trying to use rules
  759. # because !#@&^$#% nmake doesn't allow multiple 'source' extensions
  760. # when defining a rule, and we need to express a dependency between
  761. # .txt OR .inx to the final .inf.
  762. #
  763. #
  764. # 'Standard' (win95-style) infs. The rules are all the same.
  765. #
  766. # Real-signed layout.inf
  767. #
  768. $(_RSINF)\layout.inf: $(O)\layout.inx $(O)\spmap.txt \
  769. !IF $(WIN64)
  770. $(O)\wowlist.inf $(O)\wowfile.inf \
  771. !endif
  772. $(O)\layout.txt
  773. copy $(O)\$(@B).inx+$(O)\$(@B).txt $(O)\$(@B).tmp1
  774. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  775. prodfilt -s $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  776. !IF $(WIN64)
  777. copy $(@) $(O)\$(@B).tmp3
  778. copy $(O)\$(@B).inx+$(O)\$(@B).txt $(O)\$(@B).tmp1
  779. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  780. prodfilt -s $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +i
  781. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -o $(O)\$(@B).tmp2 -ac -h $(O)\wowfile.inf -f w 2>NUL
  782. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp2 $(@)
  783. @del $(O)\$(@B).tmp3
  784. !ENDIF
  785. @del $(O)\$(@B).tmp1
  786. @del $(O)\$(@B).tmp2
  787. perl $(_INX)\reorder_layout.pl $@ $(_INX)\layout.ord
  788. @del $@
  789. perl $(_INX)\splayout.pl $@.new $@ $(O)\spmap.txt
  790. @del $@.new
  791. !IF "$(LANGUAGE)" !="JPN" && "$(LANGUAGE)" != "jpn" || !$(WIN64)
  792. perl $(_INX)\inftest.pl $(LANGUAGE) $@ /B /$(PLATFORM_SWITCH)
  793. !ENDIF
  794. $(RSBINPLACE_CMD)
  795. #
  796. # Coverage Real-signed layout.inf
  797. #
  798. $(_RSCOVINF)\layout.inf: $(O)\layout.inx $(_INX)\$(@B).mcv $(_RSCOVINF)\dosnet.inx \
  799. !IF $(WIN64)
  800. $(O)\wowlist.inf $(O)\wowfile.inf \
  801. !endif
  802. $(O)\layout.txt $(O)\spmap.txt
  803. copy $(O)\$(@B).inx+$(O)\$(@B).txt $(O)\$(@B).tmp1
  804. call MergeFiles.cmd $(O)\$(@B).tmp1 $(_INX)\$(@B).mcv $(O)\$(@B).tmp2
  805. prodfilt -s $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +$(PRODSWITCH)
  806. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  807. copy $(O)\$(@B).tmp2 $@
  808. @del $(O)\$(@B).tmp1
  809. @del $(O)\$(@B).tmp2
  810. perl $(_INX)\reorder_layout.pl $@ $(_INX)\layout.ord
  811. @del $@
  812. perl $(_INX)\splayout.pl $@.new $@ $(O)\spmap.txt
  813. @del $@.new
  814. $(COVER_RSBINPLACE_CMD)
  815. #
  816. # Test-signed layout.inf
  817. #
  818. $(O)\layout.inf: $(O)\layout.inx $(_INX)\layout.tst \
  819. !IF $(WIN64)
  820. $(O)\wowlist.inf $(O)\wowfile.inf \
  821. !endif
  822. $(O)\layout.txt $(O)\spmap.txt
  823. copy $(O)\$(@B).inx+$(_INX)\$(@B).tst+$(O)\$(@B).txt $(O)\$(@B).tmp1
  824. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  825. prodfilt -s $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  826. !IF $(WIN64)
  827. copy $(@) $(O)\$(@B).tmp3
  828. copy $(O)\$(@B).inx+$(O)\$(@B).txt $(O)\$(@B).tmp1
  829. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  830. prodfilt -s $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +i
  831. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -o $(O)\$(@B).tmp2 -ac -h $(O)\wowfile.inf -f w 2>NUL
  832. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp2 $(@)
  833. @del $(O)\$(@B).tmp3
  834. !ENDIF
  835. @del $(O)\$(@B).tmp1
  836. @del $(O)\$(@B).tmp2
  837. perl $(_INX)\reorder_layout.pl $@ $(_INX)\layout.ord
  838. @del $@
  839. perl $(_INX)\splayout.pl $@.new $@ $(O)\spmap.txt
  840. @del $@.new
  841. !IF "$(LANGUAGE)" !="JPN" && "$(LANGUAGE)" != "jpn" || !$(WIN64)
  842. perl $(_INX)\inftest.pl $(LANGUAGE) $@ /B /$(PLATFORM_SWITCH)
  843. !ENDIF
  844. $(TSBINPLACE_CMD)
  845. #
  846. # Coverage Test-signed layout.inf
  847. #
  848. $(_COVINF)\layout.inf: $(_COVINF)\layout.inx \
  849. !IF $(WIN64)
  850. $(O)\wowlist.inf $(O)\wowfile.inf \
  851. !endif
  852. $(_INX)\layout.tst $(O)\spmap.txt
  853. copy $(_COVINF)\layout.inx+$(_INX)\$(@B).tst+$(O)\$(@B).txt $(O)\$(@B).tmp1
  854. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  855. prodfilt -s $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +$(PLATFORM_SWITCH)
  856. copy $(O)\$(@B).tmp1 $@
  857. @del $(O)\$(@B).tmp1
  858. @del $(O)\$(@B).tmp2
  859. perl $(_INX)\reorder_layout.pl $@ $(_INX)\layout.ord
  860. @del $@
  861. perl $(_INX)\splayout.pl $@.new $@ $(O)\spmap.txt
  862. @del $@.new
  863. $(COVER_TSBINPLACE_CMD)
  864. # we process syssetup.inf twice for win64. we process one time to get the
  865. # "olecontroldlls" data, then one more time to get the copyfiles entries, etc.
  866. #
  867. $(O)\syssetup.inf: $(O)\syssetup.inx \
  868. !IF $(WIN64)
  869. $(O)\wowlist.inf $(O)\wowfrege.inf \
  870. $(O)\wowfregc.inf $(O)\wowfrego.inf \
  871. $(O)\layout.inx $(O)\layout.txt \
  872. !ENDIF
  873. $(_LNG)\syssetup.txt $(O)\spmap.txt
  874. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  875. copy /b $(O)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  876. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  877. prodfilt -s $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  878. !IF $(WIN64)
  879. copy $(@) $(O)\$(@B).tmp3
  880. copy $(O)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  881. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  882. prodfilt -s $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +i
  883. copy /b $(O)\layout.inx+$(O)\layout.txt $(O)\$(@B).tmp4
  884. prodfilt -s $(O)\$(@B).tmp4 $(O)\$(@B).tmp2 +@
  885. prodfilt -s $(O)\$(@B).tmp2 $(O)\$(@B).tmp4 +i
  886. wowlist -i $(O)\$(@B).tmp4 -c $(O)\wowlist.inf -l $(O)\$(@B).tmp1 -s OleControlDlls -o $(O)\$(@B).tmp5 -ao -h $(O)\wowfrego.inf -f w 2>NUL
  887. wowlist -i $(O)\$(@B).tmp4 -c $(O)\wowlist.inf -l $(O)\$(@B).tmp1 -s EarlyOleControlDlls -o $(O)\$(@B).tmp6 -ao -h $(O)\wowfrege.inf -f w 2>NUL
  888. wowlist -i $(O)\$(@B).tmp4 -c $(O)\wowlist.inf -l $(O)\$(@B).tmp1 -s CryptoDlls -o $(O)\$(@B).tmp7 -ao -h $(O)\wowfregc.inf -f w 2>NUL
  889. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\syssetup.wow -o $(O)\$(@B).tmp8 -g Syssetup
  890. copy /b $(O)\$(@B).tmp3+$(O)\$(@B).tmp5+$(O)\$(@B).tmp6+$(O)\$(@B).tmp7+$(O)\$(@B).tmp8 $(@)
  891. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4 $(O)\$(@B).tmp5 $(O)\$(@B).tmp6 $(O)\$(@B).tmp7 $(O)\$(@B).tmp8
  892. !ENDIF
  893. @del $(O)\$(@B).tmp1
  894. @del $(O)\$(@B).tmp2
  895. @del $(O)\$(@B).txt1
  896. perl $(_INX)\splayout.pl $@ $@ $(O)\spmap.txt
  897. $(TSBINPLACE_CMD)
  898. !IF !$(WIN64)
  899. $(_COVINF)\syssetup.inf: $(O)\syssetup.inx $(_INX)\$(@B).mcv \
  900. $(_LNG)\syssetup.txt
  901. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  902. copy /b $(O)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  903. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  904. prodfilt -s $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +$(PLATFORM_SWITCH)
  905. call MergeFiles.cmd $(O)\$(@B).tmp1 $(_INX)\$(@B).mcv $@
  906. @del $(O)\$(@B).tmp1
  907. @del $(O)\$(@B).tmp2
  908. @del $(O)\$(@B).txt1
  909. $(COVER_TSBINPLACE_CMD)
  910. !ENDIF
  911. !IF $(WIN64)
  912. $(O)\syssetup.wow: $(O)\syssetup.inf
  913. !ENDIF
  914. $(O)\intl.inf: $(_INX)\intl.inx \
  915. !if $(WIN64)
  916. $(O)\wowlist.inf \
  917. !endif
  918. $(_LNG)\intl.txt
  919. !if "$(LANGUAGE)"=="CHS" || "$(LANGUAGE)"=="chs" || \
  920. "$(LANGUAGE)"=="CHT" || "$(LANGUAGE)"=="cht" || \
  921. "$(LANGUAGE)"=="CHH" || "$(LANGUAGE)"=="chh" || \
  922. "$(LANGUAGE)"=="JPN" || "$(LANGUAGE)"=="jpn" || \
  923. "$(LANGUAGE)"=="KOR" || "$(LANGUAGE)"=="kor" || \
  924. "$(LANGUAGE)"=="ARA" || "$(LANGUAGE)"=="ara" || \
  925. "$(LANGUAGE)"=="HEB" || "$(LANGUAGE)"=="heb" || \
  926. "$(LANGUAGE)"=="PSU" || "$(LANGUAGE)"=="psu" || \
  927. "$(LANGUAGE)"=="RU" || "$(LANGUAGE)"=="ru" || \
  928. "$(LANGUAGE)"=="EL" || "$(LANGUAGE)"=="el" || \
  929. "$(LANGUAGE)"=="PL" || "$(LANGUAGE)"=="pl" || \
  930. "$(LANGUAGE)"=="CS" || "$(LANGUAGE)"=="cs" || \
  931. "$(LANGUAGE)"=="HU" || "$(LANGUAGE)"=="hu" || \
  932. "$(LANGUAGE)"=="TR" || "$(LANGUAGE)"=="tr"
  933. infcat -t$(O)\$(@B).tmp -s$(_LNG)\$(@B).txt,0$(LCID) -a$(_INX)\usa\$(@B).txt
  934. copy $(_INX)\$(@B).inx+$(O)\$(@B).tmp $(O)\$(@B).tmp1
  935. del $(O)\$(@B).tmp
  936. !else
  937. copy $(_INX)\$(@B).inx+$(_LNG)\$(@B).txt $(O)\$(@B).tmp1
  938. !endif
  939. prodfilt -u $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  940. prodfilt -u $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  941. !if $(WIN64)
  942. copy $@ $(O)\$(@B).tmp3
  943. copy $(_INX)\$(@B).inx+$(_LNG)\$(@B).txt $(O)\$(@B).tmp1
  944. prodfilt -u $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  945. prodfilt -u $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  946. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -u -d $(O)\intl.wow -o $(O)\$(@B).tmp4 -n $(O)\intlinf.wow -g Intl
  947. perl << $(O)\$(@B).tmp4 >$(O)\$(@B).tmp5
  948. # perl script to convert "=10,IME" to "=10,IME (x86)" because it's too late to fix setup.
  949. # This script would be a lot nicer except that intl.inf is UNICODE
  950. undef $$/;
  951. binmode(STDIN);
  952. binmode(STDOUT);
  953. $$_ = <>;
  954. s/=\0\x31\0\x30\0,\0I\0M\0E\0\\\0([^\n\r]*)/=\0\x31\0\x30\0,\0"\0I\0M\0E\0 \0\(\0x\0\x38\0\x36\0\)\0\\\0\1"\0/g;
  955. print;
  956. <<NOKEEP
  957. !if $(IA64)
  958. echo [SourceDisksFiles.ia64] >$(O)\intl.hdr1
  959. !else
  960. echo [SourceDisksFiles.amd64] >$(O)\intl.hdr1
  961. !endif
  962. unitext $(UNITEXT_OPT) $(O)\intl.hdr1 $(O)\intl.hdr
  963. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp5+$(O)\intl.hdr+$(O)\intlinf.wow $(O)\$(@B).tmp2
  964. # This is a temporary fix as cmd.exe on beta2 2462 introduces a ^Z char at the end of the file
  965. # when using copy /a. Running a dummy prodfilt on this fixes the issue for now. Should be removed
  966. # once the main build lab upgrades the build running on their machines
  967. prodfilt -u $(O)\$(@B).tmp2 $@ +@
  968. unitext -u -$(ANSI_CODEPAGE) $(O)\intlinf.wow $(O)\intlinfa.wow
  969. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4 $(O)\$(@B).tmp5 $(O)\intl.hdr1 $(O)\intl.hdr
  970. !endif
  971. @del $(O)\$(@B).tmp1
  972. @del $(O)\$(@B).tmp2
  973. perl $(_INX)\splayout.pl $@ $@ $(O)\spmap.txt
  974. $(TSBINPLACE_CMD)
  975. !if $(WIN64)
  976. $(O)\intl.wow: $(O)\intl.inf
  977. $(O)\intlinfa.wow: $(O)\intl.inf
  978. !endif
  979. $(O)\font.inf: $(_INX)\font.inx $(_LNG)\font.txt
  980. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  981. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  982. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  983. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  984. @del $(O)\$(@B).tmp1
  985. @del $(O)\$(@B).tmp2
  986. @del $(O)\$(@B).txt1
  987. $(STAMP)
  988. $(TSBINPLACE_CMD)
  989. $(O)\netdav.inf: $(_INX)\netdav.inx $(_LNG)\netdav.txt
  990. copy $(_INX)\$(@B).inx+$(_LNG)\$(@B).txt $@
  991. $(STAMP)
  992. $(TSBINPLACE_CMD)
  993. $(O)\display.inf: $(_INX)\display.inx $(_LNG)\display.txt
  994. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  995. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp
  996. prodfilt $(O)\$(@B).tmp $@ +$(PLATFORM_SWITCH)
  997. @del $(O)\$(@B).tmp
  998. @del $(O)\$(@B).txt1
  999. $(STAMP)
  1000. $(TSBINPLACE_CMD)
  1001. $(O)\dispdet.inf: $(_INX)\dispdet.inx $(_LNG)\display.txt
  1002. $(CC) $(PREFLAGS) $(_LNG)\display.txt > $(O)\$(@B).txt1
  1003. copy $(_INX)\$(@B).inx+display.txt1 $(O)\$(@B).tmp
  1004. prodfilt $(O)\$(@B).tmp $@ +$(PLATFORM_SWITCH)
  1005. @del $(O)\$(@B).tmp
  1006. @del $(O)\$(@B).txt1
  1007. $(STAMP)
  1008. $(TSBINPLACE_CMD)
  1009. $(O)\optional.inf: $(_INX)\optional.inx \
  1010. !if $(WIN64)
  1011. $(O)\wowlist.inf \
  1012. !endif
  1013. $(_LNG)\optional.txt
  1014. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1015. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1016. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1017. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1018. !if $(WIN64)
  1019. copy $@ $(O)\$(@B).tmp3
  1020. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1021. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1022. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  1023. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\optional.wow -o $(O)\$(@B).tmp4
  1024. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1025. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1026. !endif
  1027. @del $(O)\$(@B).tmp1
  1028. @del $(O)\$(@B).tmp2
  1029. @del $(O)\$(@B).txt1
  1030. $(TSBINPLACE_CMD)
  1031. !if $(WIN64)
  1032. $(O)\optional.wow: $(O)\optional.inf
  1033. !endif
  1034. $(O)\accessor.inf: $(_INX)\accessor.inx \
  1035. !if $(WIN64)
  1036. $(O)\wowlist.inf \
  1037. !endif
  1038. $(_LNG)\accessor.txt
  1039. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1040. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1041. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1042. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1043. !if $(WIN64)
  1044. copy $@ $(O)\$(@B).tmp3
  1045. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1046. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1047. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  1048. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\accessor.wow -o $(O)\$(@B).tmp4
  1049. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1050. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1051. !endif
  1052. @del $(O)\$(@B).tmp1
  1053. @del $(O)\$(@B).tmp2
  1054. @del $(O)\$(@B).txt1
  1055. $(TSBINPLACE_CMD)
  1056. !if $(WIN64)
  1057. $(O)\accessor.wow: $(O)\accessor.inf
  1058. !endif
  1059. $(O)\communic.inf: $(_INX)\communic.inx \
  1060. !if $(WIN64)
  1061. $(O)\wowlist.inf \
  1062. !endif
  1063. $(_LNG)\communic.txt
  1064. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1065. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1066. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1067. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1068. !if $(WIN64)
  1069. copy $@ $(O)\$(@B).tmp3
  1070. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1071. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1072. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  1073. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\communic.wow -o $(O)\$(@B).tmp4
  1074. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1075. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1076. !endif
  1077. @del $(O)\$(@B).tmp1
  1078. @del $(O)\$(@B).tmp2
  1079. @del $(O)\$(@B).txt1
  1080. $(TSBINPLACE_CMD)
  1081. !if $(WIN64)
  1082. $(O)\communic.wow: $(O)\communic.inf
  1083. !endif
  1084. $(O)\games.inf: $(_INX)\games.inx \
  1085. !if $(WIN64)
  1086. $(O)\wowlist.inf \
  1087. !endif
  1088. $(_LNG)\games.txt
  1089. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1090. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1091. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1092. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1093. !if $(WIN64)
  1094. copy $@ $(O)\$(@B).tmp3
  1095. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1096. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1097. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  1098. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\games.wow -o $(O)\$(@B).tmp4
  1099. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1100. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1101. !endif
  1102. @del $(O)\$(@B).tmp1
  1103. @del $(O)\$(@B).tmp2
  1104. @del $(O)\$(@B).txt1
  1105. $(TSBINPLACE_CMD)
  1106. !if $(WIN64)
  1107. $(O)\games.wow: $(O)\games.inf
  1108. !endif
  1109. $(O)\au.inf: $(_INX)\au.inx $(_LNG)\au.txt
  1110. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1111. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp
  1112. prodfilt $(O)\$(@B).tmp $@ +$(PLATFORM_SWITCH)
  1113. @del $(O)\$(@B).tmp
  1114. @del $(O)\$(@B).txt1
  1115. $(TSBINPLACE_CMD)
  1116. $(O)\wbemoc.inf: $(_INX)\wbemoc.inx \
  1117. !if $(WIN64)
  1118. $(O)\wowlist.inf \
  1119. !endif
  1120. $(_LNG)\wbemoc.txt
  1121. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1122. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1123. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1124. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1125. !if $(WIN64)
  1126. copy $@ $(O)\$(@B).tmp3
  1127. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1128. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1129. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  1130. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -g WbemOC -as -f w -d $(O)\wbemoc.wow -o $(O)\$(@B).tmp4
  1131. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1132. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1133. !endif
  1134. @del $(O)\$(@B).tmp1
  1135. @del $(O)\$(@B).tmp2
  1136. @del $(O)\$(@B).txt1
  1137. $(STAMP)
  1138. $(TSBINPLACE_CMD)
  1139. !if $(WIN64)
  1140. $(O)\wbemoc.wow: $(O)\wbemoc.inf
  1141. !endif
  1142. $(O)\wbemsnmp.inf: $(_INX)\wbemsnmp.inx $(_LNG)\wbemsnmp.txt
  1143. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1144. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1145. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1146. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1147. @del $(O)\$(@B).tmp1
  1148. @del $(O)\$(@B).tmp2
  1149. @del $(O)\$(@B).txt1
  1150. $(TSBINPLACE_CMD)
  1151. #
  1152. # IE.INF/INSTALL.INS notes:
  1153. # For ie.inf and install.ins, we have to replace all the
  1154. # TOK_xxx keys in the file with the appropriate entries from ieverp.h.
  1155. # To do this, we first build a makefile that will preprocess
  1156. # the file and extract the interesting entries...
  1157. #
  1158. $(O)\ietoken.mak : $(_INX)\makefile.inc $(SDK_INC_PATH)\ntverp.h
  1159. echo !include $(NTMAKEENV)\makefile.plt > $@
  1160. @$(TARGET_CPP) -nologo -I$(SDK_INC_PATH) -DNASHVILLE /EP /Tc << | qgrep TOK_ >> $@
  1161. #include "$(SDK_INC_PATH)\ntverp.h"
  1162. TOK_BUILDNUM = VER_PRODUCTBUILD
  1163. TOK_QFE = VER_PRODUCTBUILD_QFE
  1164. TOK_MAJOR_NUM = VER_MAJOR_PRODUCTVER
  1165. TOK_MINOR_NUM = VER_MINOR_PRODUCTVER
  1166. #if (VER_PRODUCTBUILD_QFE > 0)
  1167. TOK_FULLQFE = .VER_PRODUCTBUILD_QFE
  1168. #else
  1169. TOK_FULLQFE =
  1170. #endif
  1171. <<NOKEEP
  1172. type << >> $@
  1173. PERL_SWITCHES = \
  1174. $(_INX)\token.per \
  1175. -tTOK_BUILDNUM=$$(TOK_BUILDNUM) \
  1176. -tTOK_QFE=$$(TOK_QFE) \
  1177. -tTOK_MAJOR_NUM=$$(TOK_MAJOR_NUM) \
  1178. -tTOK_MINOR_NUM=$$(TOK_MINOR_NUM) \
  1179. -tTOK_FULLQFE=$$(TOK_FULLQFE)
  1180. STD_DEP = \
  1181. $(SDK_INC_PATH)\ntverp.h \
  1182. $@
  1183. $(O)\ie.inf : $(O)\ie.inftok \
  1184. !if $(WIN64)
  1185. $(O)\ie.inftok_6432 \
  1186. !endif
  1187. $$(STD_DEP)
  1188. perl $$(PERL_SWITCHES) $(O)\ie.inftok > $(O)\ie.inf
  1189. !if $(WIN64)
  1190. perl $$(PERL_SWITCHES) $(O)\ie.inftok_6432 > $(O)\ie.tmp1
  1191. wowlist -i $(O)\ie.tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\ie.wow -o $(O)\ie.tmp2
  1192. copy $(O)\ie.inf $(O)\ie.tmp1
  1193. copy $(O)\ie.tmp1+$(O)\ie.tmp2 $(O)\ie.inf
  1194. @del $(O)\ie.tmp1 $(O)\ie.tmp2
  1195. !endif
  1196. $(O)\install.ins : $(O)\install.instok $(STD_DEP)
  1197. perl $$(PERL_SWITCHES) $(O)\install.instok > $(O)\install.ins
  1198. $(O)\msoe50.inf : $(O)\msoe50.inftok \
  1199. !if $(WIN64)
  1200. $(O)\msoe50.inftok_6432 \
  1201. !endif
  1202. $(STD_DEP)
  1203. perl $$(PERL_SWITCHES) $(O)\msoe50.inftok > $(O)\msoe50.inf
  1204. !if $(WIN64)
  1205. perl $$(PERL_SWITCHES) $(O)\msoe50.inftok_6432 > $(O)\msoe50.tmp1
  1206. wowlist -i $(O)\msoe50.tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\msoe50.wow -o $(O)\msoe50.tmp2
  1207. copy $(O)\msoe50.inf $(O)\msoe50.tmp1
  1208. copy $(O)\msoe50.tmp1+$(O)\msoe50.tmp2 $(O)\msoe50.inf
  1209. @del $(O)\msoe50.tmp1 $(O)\msoe50.tmp2
  1210. !endif
  1211. $(O)\wab50.inf : $(O)\wab50.inftok $(STD_DEP)
  1212. perl $$(PERL_SWITCHES) $(O)\wab50.inftok > $(O)\wab50.inf
  1213. !if $(WIN64)
  1214. wowlist -i $(O)\wab50.inf -c $(O)\wowlist.inf -as -f w -d $(O)\wab50.wow -o $(O)\wab50.tmp2
  1215. copy $(O)\wab50.inf $(O)\wab50.tmp1
  1216. copy $(O)\wab50.tmp1+$(O)\wab50.tmp2 $(O)\wab50.inf
  1217. @del $(O)\wab50.tmp1 $(O)\wab50.tmp2
  1218. !endif
  1219. $(O)\update.inf: $(O)\update.inftok $(STD_DEP)
  1220. perl $$(PERL_SWITCHES) $(O)\update.inftok > $(O)\update.inf
  1221. $(O)\hivesft.inf: $(O)\hivesft.inftok $(STD_DEP)
  1222. perl $$(PERL_SWITCHES) $(O)\hivesft.inftok > $(O)\hivesft.inf
  1223. <<NOKEEP
  1224. #
  1225. # IE/INSTALL notes. Then we build a pretokenized file
  1226. # (tok added to the filename).
  1227. #
  1228. $(O)\ie.inftok: $(_INX)\ie.inx $(_LNG)\ie.txt
  1229. @type <<$(ECHO_RSP)
  1230. $(ECHO_MSG_P)
  1231. <<NOKEEP
  1232. @$(C_PREPROCESSOR_NAME) @<<$(CL_RSP) /Tc$(_INX)\$(@B).inx > $(O)\$(@B).tmp
  1233. $(CPPXX: =
  1234. )
  1235. /DNT5
  1236. <<NOKEEP
  1237. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1238. copy $(O)\$(@B).tmp+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1239. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1240. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1241. @del $(O)\$(@B).tmp $(O)\$(@B).txt1 $(O)\$(@B).tmp1 $(O)\$(@B).tmp2
  1242. $(O)\ie.inftok_6432: $(_INX)\ie.inx $(_LNG)\ie.txt
  1243. @type <<$(ECHO_RSP)
  1244. $(C_COMPILER_NAME) -D_X86_=1 -Di386=1 $(_INX)\ie.inx
  1245. <<NOKEEP
  1246. @$(C_PREPROCESSOR_NAME) @<<$(CL_RSP) -D_X86_=1 -Di386=1 /Tc$(_INX)\$(@B).inx > $(O)\$(@B).tmp
  1247. $(CPPXX: =
  1248. )
  1249. /DNT5
  1250. <<NOKEEP
  1251. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1252. copy $(O)\$(@B).tmp+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1253. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1254. prodfilt $(O)\$(@B).tmp2 $@ +i
  1255. @del $(O)\$(@B).tmp $(O)\$(@B).tmp1 $(O)\$(@B).tmp2
  1256. $(O)\install.instok: $(_INX)\install.inx $(_LNG)\install.txt $(O)\ietoken.mak
  1257. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1258. copy $(_INX)\install.inx+$(O)\$(@B).txt1 $@
  1259. @del $(O)\$(@B).txt1
  1260. $(O)\msoe50.inftok: $(_INX)\msoe50.inx $(_LNG)\msoe50.txt
  1261. @type <<$(ECHO_RSP)
  1262. $(ECHO_MSG_P)
  1263. <<NOKEEP
  1264. @$(C_PREPROCESSOR_NAME) @<<$(CL_RSP) /Tc$(_INX)\$(@B).inx > $(O)\$(@B).tmp
  1265. $(CPPXX: =
  1266. )
  1267. /DNT5
  1268. <<NOKEEP
  1269. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1270. copy $(O)\$(@B).tmp+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1271. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1272. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1273. @del $(O)\$(@B).tmp $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 $(O)\$(@B).txt1
  1274. $(O)\msoe50.inftok_6432: $(_INX)\msoe50.inx $(_LNG)\msoe50.txt
  1275. @type <<$(ECHO_RSP)
  1276. $(C_COMPILER_NAME) -D_X86_=1 -Di386=1 $(_INX)\msoe50.inx
  1277. <<NOKEEP
  1278. @$(C_PREPROCESSOR_NAME) @<<$(CL_RSP) -D_X86_=1 -Di386=1 /Tc$(_INX)\$(@B).inx > $(O)\$(@B).tmp
  1279. $(CPPXX: =
  1280. )
  1281. /DNT5
  1282. <<NOKEEP
  1283. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1284. copy $(O)\$(@B).tmp+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1285. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1286. prodfilt $(O)\$(@B).tmp2 $@ +i
  1287. @del $(O)\$(@B).tmp $(O)\$(@B).tmp1 $(O)\$(@B).tmp2
  1288. $(O)\wab50.inftok: $(_INX)\wab50.inx $(_LNG)\wab50.txt
  1289. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1290. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1291. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1292. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1293. @del $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 $(O)\$(@B).txt1
  1294. #
  1295. # IE/INSTALL notes: And finally, we run them through the
  1296. # makefile we created above, stamp, and binplace.
  1297. #
  1298. $(O)\ie.inf : $(O)\ietoken.mak \
  1299. !if $(WIN64)
  1300. $(O)\wowlist.inf \
  1301. $(O)\ie.inftok_6432 \
  1302. !endif
  1303. $(O)\ie.inftok
  1304. nmake -f $(O)\ietoken.mak $@
  1305. $(STAMP)
  1306. $(TSBINPLACE_CMD)
  1307. !if $(WIN64)
  1308. $(O)\ie.wow: $(O)\ie.inf
  1309. !endif
  1310. $(O)\msoe50.inf : $(O)\ietoken.mak \
  1311. !if $(WIN64)
  1312. $(O)\wowlist.inf \
  1313. $(O)\msoe50.inftok_6432 \
  1314. !endif
  1315. $(O)\msoe50.inftok
  1316. nmake -f $(O)\ietoken.mak $@
  1317. $(STAMP)
  1318. $(TSBINPLACE_CMD)
  1319. !if $(WIN64)
  1320. $(O)\msoe50.wow: $(O)\msoe50.inf
  1321. !endif
  1322. $(O)\mstask.inf : $(_INX)\mstask.inx \
  1323. !if $(WIN64)
  1324. $(O)\wowlist.inf \
  1325. !endif
  1326. $(_LNG)\mstask.txt
  1327. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1328. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1329. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1330. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1331. !if $(WIN64)
  1332. copy $@ $(O)\$(@B).tmp3
  1333. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1334. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1335. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  1336. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\mstask.wow -o $(O)\$(@B).tmp4
  1337. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1338. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1339. !endif
  1340. @del $(O)\$(@B).tmp1
  1341. @del $(O)\$(@B).tmp2
  1342. @del $(O)\$(@B).txt1
  1343. $(STAMP)
  1344. $(TSBINPLACE_CMD)
  1345. !if $(WIN64)
  1346. $(O)\mstask.wow: $(O)\mstask.inf
  1347. !endif
  1348. $(O)\wab50.inf : $(O)\ietoken.mak \
  1349. !if $(WIN64)
  1350. $(O)\wowlist.inf \
  1351. $(O)\msoe50.inftok_6432 \
  1352. !endif
  1353. $(O)\wab50.inftok
  1354. nmake -f $(O)\ietoken.mak $@
  1355. $(STAMP)
  1356. $(TSBINPLACE_CMD)
  1357. !if $(WIN64)
  1358. $(O)\wab50.wow: $(O)\wab50.inf
  1359. !endif
  1360. $(O)\install.ins: $(O)\ietoken.mak $(O)\install.instok
  1361. nmake -f $(O)\ietoken.mak $@
  1362. $(TSBINPLACE_CMD)
  1363. $(O)\mmopt.inf: $(_INX)\mmopt.inx \
  1364. !if $(WIN64)
  1365. $(O)\wowlist.inf \
  1366. !endif
  1367. $(_LNG)\mmopt.txt
  1368. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1369. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp
  1370. prodfilt $(O)\$(@B).tmp $@ +$(PLATFORM_SWITCH)
  1371. !if $(WIN64)
  1372. copy $@ $(O)\$(@B).tmp3
  1373. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1374. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1375. wowlist -i $(O)\$(@B).tmp2 -c $(O)\wowlist.inf -as -f w -d $(O)\mmopt.wow -o $(O)\$(@B).tmp4
  1376. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1377. @del $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1378. !endif
  1379. @del $(O)\$(@B).tmp
  1380. @del $(O)\$(@B).txt1
  1381. $(TSBINPLACE_CMD)
  1382. !if $(WIN64)
  1383. $(O)\mmopt.wow: $(O)\mmopt.inf
  1384. !endif
  1385. $(O)\msmail.inf: $(_INX)\msmail.inx $(_LNG)\msmail.txt
  1386. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1387. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1388. @del $(O)\$(@B).txt1
  1389. $(TSBINPLACE_CMD)
  1390. $(O)\perms.inf: $(_INX)\perms.inx $(_LNG)\perms.txt
  1391. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1392. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1393. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1394. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1395. @del $(O)\$(@B).tmp1
  1396. @del $(O)\$(@B).tmp2
  1397. @del $(O)\$(@B).txt1
  1398. $(STAMP)
  1399. $(TSBINPLACE_CMD)
  1400. $(O)\hivesys.inf: $(_INX)\hivesys.inx $(_LNG)\hivesys.txt
  1401. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1402. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1403. $(C_COMPILER_NAME) -EP $(CDEFINES) $(O)\$(@B).tmp1 >$(O)\$(@B).tmp2
  1404. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PRODSWITCH)
  1405. prodfilt $(O)\$(@B).tmp3 $@ +$(PLATFORM_SWITCH)
  1406. @del $(O)\$(@B).tmp1
  1407. @del $(O)\$(@B).tmp2
  1408. @del $(O)\$(@B).tmp3
  1409. @del $(O)\$(@B).txt1
  1410. $(STAMP)
  1411. $(TSBINPLACE_CMD)
  1412. $(_COVINF)\hivesys.inf: $(_INX)\hivesys.inx $(_LNG)\hivesys.txt $(_INX)\$(@B).mcv
  1413. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1414. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1415. $(C_COMPILER_NAME) -EP $(CDEFINES) $(O)\$(@B).tmp1 >$(O)\$(@B).tmp2
  1416. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PRODSWITCH)
  1417. prodfilt $(O)\$(@B).tmp3 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1418. call MergeFiles.cmd $(O)\$(@B).tmp2 $(_INX)\$(@B).mcv $(@)
  1419. @del $(O)\$(@B).tmp1
  1420. @del $(O)\$(@B).tmp2
  1421. @del $(O)\$(@B).tmp3
  1422. @del $(O)\$(@B).txt1
  1423. $(STAMP)
  1424. $(COVER_TSBINPLACE_CMD)
  1425. $(O)\hivesft.inf: $(_INX)\hivesft.inx $(_LNG)\hivesft.txt $(O)\ietoken.mak
  1426. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1427. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1428. $(C_COMPILER_NAME) -EP $(CDEFINES) $(O)\$(@B).tmp1 >$(O)\$(@B).tmp2
  1429. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PRODSWITCH)
  1430. prodfilt $(O)\$(@B).tmp3 $(O)\$(@B).inftok +$(PLATFORM_SWITCH)
  1431. nmake -f $(O)\ietoken.mak $@
  1432. @del $(O)\$(@B).tmp1
  1433. @del $(O)\$(@B).tmp2
  1434. @del $(O)\$(@B).tmp3
  1435. @del $(O)\$(@B).txt1
  1436. @del $(O)\$(@B).inftok
  1437. $(STAMP)
  1438. $(TSBINPLACE_CMD)
  1439. $(O)\hivedef.inf: $(_INX)\hivedef.inx $(_LNG)\hivedef.txt
  1440. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1441. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1442. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1443. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1444. @del $(O)\$(@B).tmp1
  1445. @del $(O)\$(@B).tmp2
  1446. @del $(O)\$(@B).txt1
  1447. $(STAMP)
  1448. $(TSBINPLACE_CMD)
  1449. $(O)\hivecls.inf: $(_INX)\hivecls.inx $(_LNG)\hivecls.txt
  1450. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1451. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1452. $(C_COMPILER_NAME) -EP $(CDEFINES) $(O)\$(@B).tmp1 >$(O)\$(@B).tmp2
  1453. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PRODSWITCH)
  1454. prodfilt $(O)\$(@B).tmp3 $@ +$(PLATFORM_SWITCH)
  1455. @del $(O)\$(@B).tmp1
  1456. @del $(O)\$(@B).tmp2
  1457. @del $(O)\$(@B).tmp3
  1458. @del $(O)\$(@B).txt1
  1459. $(STAMP)
  1460. $(TSBINPLACE_CMD)
  1461. $(O)\hiveusd.inf: $(_INX)\hiveusd.inx $(_LNG)\hiveusd.txt
  1462. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1463. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1464. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1465. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1466. @del $(O)\$(@B).tmp1
  1467. @del $(O)\$(@B).tmp2
  1468. @del $(O)\$(@B).txt1
  1469. $(STAMP)
  1470. $(TSBINPLACE_CMD)
  1471. !if $(WIN64)
  1472. $(O)\hivcls32.inf: $(_INX)\hivecls.inx $(_LNG)\hivecls.txt $(_INX)\hive32.pl
  1473. $(CC) $(PREFLAGS) $(_LNG)\hivecls.txt > hivecls.txt1
  1474. copy $(_INX)\hivecls.inx+hivecls.txt1 $(O)\$(@B).tmp1
  1475. $(C_COMPILER_NAME) -EP $(CDEFINES) $(O)\$(@B).tmp1 >$(O)\$(@B).tmp2
  1476. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PRODSWITCH)
  1477. prodfilt $(O)\$(@B).tmp3 $(O)\$(@B).tmp1 +i
  1478. perl $(_INX)\hive32.pl -input=$(O)\$(@B).tmp1 -output=$@
  1479. @del $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 hivecls.txt1
  1480. $(TSBINPLACE_CMD)
  1481. $(O)\hivsft32.inf: $(_INX)\hivesft.inx $(_LNG)\hivesft.txt $(_INX)\hive32.pl
  1482. $(CC) $(PREFLAGS) $(_LNG)\hivesft.txt > $(O)\hivesft.txt1
  1483. copy $(_INX)\hivesft.inx+$(O)\hivesft.txt1 $(O)\$(@B).tmp1
  1484. $(C_COMPILER_NAME) -EP $(CDEFINES) $(O)\$(@B).tmp1 >$(O)\$(@B).tmp2
  1485. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PRODSWITCH)
  1486. prodfilt $(O)\$(@B).tmp3 $(O)\$(@B).tmp1 +i
  1487. perl $(_INX)\hive32.pl -input=$(O)\$(@B).tmp1 -output=$@
  1488. @del $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 $(O)\$(@B).tmp3
  1489. $(TSBINPLACE_CMD)
  1490. !endif
  1491. $(O)\mdac.inf: $(_INX)\mdac.inx \
  1492. !if $(WIN64)
  1493. $(O)\wowlist.inf \
  1494. !endif
  1495. $(_LNG)\mdac.txt
  1496. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1497. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1498. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1499. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1500. !if $(WIN64)
  1501. copy $@ $(O)\$(@B).tmp3
  1502. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1503. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +@
  1504. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +i
  1505. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\mdac.wow -o $(O)\$(@B).tmp4
  1506. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1507. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1508. !endif
  1509. @del $(O)\$(@B).tmp1
  1510. @del $(O)\$(@B).tmp2
  1511. @del $(O)\$(@B).txt1
  1512. $(STAMP)
  1513. $(TSBINPLACE_CMD)
  1514. !if $(WIN64)
  1515. $(O)\mdac.wow: $(O)\mdac.inf
  1516. !endif
  1517. $(O)\mdacwx86.inf: $(_INX)\mdacwx86.inx $(_LNG)\mdac.txt
  1518. $(CC) $(PREFLAGS) $(_LNG)\mdac.txt > mdac.txt1
  1519. copy $(_INX)\$(@B).inx+mdac.txt1 $(O)\$(@B).tmp1
  1520. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1521. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1522. @del $(O)\$(@B).tmp1
  1523. @del $(O)\$(@B).tmp2
  1524. @del mdac.txt1
  1525. $(TSBINPLACE_CMD)
  1526. $(O)\multimed.inf: $(_INX)\multimed.inx \
  1527. !if $(WIN64)
  1528. $(O)\wowlist.inf \
  1529. !endif
  1530. $(_LNG)\multimed.txt
  1531. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1532. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1533. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1534. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1535. !if $(WIN64)
  1536. copy $@ $(O)\$(@B).tmp3
  1537. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1538. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1539. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  1540. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\multimed.wow -o $(O)\$(@B).tmp4
  1541. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1542. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1543. !endif
  1544. @del $(O)\$(@B).tmp1
  1545. @del $(O)\$(@B).tmp2
  1546. @del $(O)\$(@B).txt1
  1547. $(TSBINPLACE_CMD)
  1548. !if $(WIN64)
  1549. $(O)\multimed.wow: $(O)\multimed.inf
  1550. !endif
  1551. $(O)\pinball.inf: $(_INX)\pinball.inx \
  1552. !if $(WIN64)
  1553. $(O)\wowlist.inf \
  1554. !endif
  1555. $(_LNG)\pinball.txt
  1556. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1557. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1558. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1559. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1560. !if $(WIN64)
  1561. copy $@ $(O)\$(@B).tmp3
  1562. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1563. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1564. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  1565. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\pinball.wow -o $(O)\$(@B).tmp4
  1566. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1567. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1568. !endif
  1569. @del $(O)\$(@B).tmp1
  1570. @del $(O)\$(@B).tmp2
  1571. @del $(O)\$(@B).txt1
  1572. $(TSBINPLACE_CMD)
  1573. !if $(WIN64)
  1574. $(O)\pinball.wow: $(O)\pinball.inf
  1575. !endif
  1576. $(O)\sapi5.inf: $(_INX)\sapi5.inx \
  1577. $(_LNG)\sapi5.txt
  1578. $(CC) $(PREFLAGS) /nologo /c /EP $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1579. unitext -m -o $(O)\$(@B).txt1 $(O)\$(@B).txt2
  1580. copy /b $(_INX)\$(@B).inx+$(O)\$(@B).txt2 $(O)\$(@B).tmp1
  1581. prodfilt -u $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1582. prodfilt -u $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1583. @del $(O)\$(@B).tmp1
  1584. @del $(O)\$(@B).tmp2
  1585. @del $(O)\$(@B).txt1
  1586. @del $(O)\$(@B).txt2
  1587. $(STAMP)
  1588. $(TSBINPLACE_CMD)
  1589. $(O)\wordpad.inf: $(_INX)\wordpad.inx \
  1590. !if $(WIN64)
  1591. $(O)\wowlist.inf \
  1592. !endif
  1593. $(_LNG)\wordpad.txt
  1594. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1595. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1596. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1597. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  1598. !if $(WIN64)
  1599. copy $@ $(O)\$(@B).tmp3
  1600. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1601. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +i
  1602. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp1 +@
  1603. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\wordpad.wow -o $(O)\$(@B).tmp4
  1604. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1605. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1606. !endif
  1607. @del $(O)\$(@B).tmp1
  1608. @del $(O)\$(@B).tmp2
  1609. @del $(O)\$(@B).txt1
  1610. $(TSBINPLACE_CMD)
  1611. !if $(WIN64)
  1612. $(O)\wordpad.wow: $(O)\wordpad.inf
  1613. !endif
  1614. $(O)\devxprop.inf: $(_INX)\devxprop.inx $(_LNG)\devxprop.txt
  1615. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1616. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1617. prodfilt $(O)\$(@B).tmp1 $@ +$(PRODSWITCH)
  1618. @del $(O)\$(@B).tmp1
  1619. @del $(O)\$(@B).txt1
  1620. $(STAMP)
  1621. $(TSBINPLACE_CMD)
  1622. $(O)\devxprop.inf: $(_INX)\devxprop.inx $(_LNG)\devxprop.txt
  1623. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1624. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1625. prodfilt $(O)\$(@B).tmp1 $@ +$(PRODSWITCH)
  1626. @del $(O)\$(@B).tmp1
  1627. @del $(O)\$(@B).txt1
  1628. $(STAMP)
  1629. $(TSBINPLACE_CMD)
  1630. $(O)\shell.inf: $(_INX)\shell.inx $(_LNG)\shell.txt
  1631. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1632. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1633. prodfilt $(O)\$(@B).tmp1 $@ +$(PRODSWITCH)
  1634. @del $(O)\$(@B).tmp1
  1635. @del $(O)\$(@B).txt1
  1636. $(STAMP)
  1637. $(TSBINPLACE_CMD)
  1638. $(O)\shl_img.inf: $(_INX)\shl_img.inx $(_LNG)\shl_img.txt
  1639. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1640. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1641. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1642. prodfilt -s $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1643. @del $(O)\$(@B).tmp1
  1644. @del $(O)\$(@B).tmp2
  1645. @del $(O)\$(@B).txt1
  1646. $(STAMP)
  1647. $(TSBINPLACE_CMD)
  1648. $(O)\shellmui.inf: $(_INX)\shellmui.inx $(_LNG)\shellmui.txt
  1649. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1650. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1651. prodfilt $(O)\$(@B).tmp1 $@ +$(PRODSWITCH)
  1652. @del $(O)\$(@B).tmp1
  1653. @del $(O)\$(@B).txt1
  1654. $(STAMP)
  1655. $(TSBINPLACE_CMD)
  1656. $(O)\skinsmui.inf: $(_INX)\skinsmui.inx $(_LNG)\skinsmui.txt
  1657. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(@B).txt1
  1658. copy $(_INX)\$(@B).inx+$(@B).txt1 $(@B).tmp1
  1659. prodfilt $(@B).tmp1 $(@B).tmp2 +$(PLATFORM_SWITCH)
  1660. prodfilt $(@B).tmp2 $@ +$(PRODSWITCH)
  1661. @del $(@B).tmp1
  1662. @del $(@B).tmp2
  1663. @del $(@B).txt1
  1664. $(TSBINPLACE_CMD)
  1665. $(O)\wmprfmui.inf: $(_INX)\wmprfmui.inx $(_LNG)\wmprfmui.txt
  1666. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(@B).txt1
  1667. $(CC) $(PREFLAGS) $(_INX)\$(@B).inx > $(O)\$(@B).inx1
  1668. copy $(O)\$(@B).inx1+$(@B).txt1 $(@B).tmp1
  1669. prodfilt $(@B).tmp1 $(@B).tmp2 +$(PLATFORM_SWITCH)
  1670. prodfilt $(@B).tmp2 $@ +$(PRODSWITCH)
  1671. @del $(@B).tmp1
  1672. @del $(@B).tmp2
  1673. @del $(@B).txt1
  1674. @del $(O)\$(@B).inx1
  1675. $(TSBINPLACE_CMD)
  1676. $(O)\wmtrmui.inf: $(_INX)\wmtrmui.inx $(_LNG)\wmtrmui.txt
  1677. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(@B).txt1
  1678. copy $(_INX)\$(@B).inx+$(@B).txt1 $(@B).tmp1
  1679. prodfilt $(@B).tmp1 $(@B).tmp2 +$(PLATFORM_SWITCH)
  1680. prodfilt $(@B).tmp2 $@ +$(PRODSWITCH)
  1681. @del $(@B).tmp1
  1682. @del $(@B).tmp2
  1683. @del $(@B).txt1
  1684. $(TSBINPLACE_CMD)
  1685. $(O)\srchasst.inf: $(_INX)\srchasst.inx $(_LNG)\srchasst.txt
  1686. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(@B).txt1
  1687. copy $(_INX)\$(@B).inx+$(@B).txt1 $(@B).tmp1
  1688. prodfilt $(@B).tmp1 $(@B).tmp2 +$(PLATFORM_SWITCH)
  1689. prodfilt $(@B).tmp2 $@ +$(PRODSWITCH)
  1690. @del $(@B).tmp1
  1691. @del $(@B).tmp2
  1692. @del $(@B).txt1
  1693. $(TSBINPLACE_CMD)
  1694. $(O)\srchmui.inf: $(_INX)\srchmui.inx $(_LNG)\srchmui.txt
  1695. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1696. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1697. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1698. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1699. @del $(O)\$(@B).tmp1
  1700. @del $(O)\$(@B).tmp2
  1701. @del $(O)\$(@B).txt1
  1702. $(STAMP)
  1703. $(TSBINPLACE_CMD)
  1704. $(O)\sysoc.inf: $(_INX)\sysoc.inx $(_LNG)\sysoc.txt
  1705. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1706. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1707. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1708. prodfilt -s $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1709. @del $(O)\$(@B).tmp1
  1710. @del $(O)\$(@B).tmp2
  1711. @del $(O)\$(@B).txt1
  1712. $(STAMP)
  1713. $(TSBINPLACE_CMD)
  1714. # using the sysoc.txt file for strings.
  1715. $(O)\asroc.inf: $(_INX)\asroc.inx $(_LNG)\sysoc.txt
  1716. $(CC) $(PREFLAGS) $(_LNG)\sysoc.txt > sysoc.txt1
  1717. copy $(_INX)\$(@B).inx+sysoc.txt1 $(O)\$(@B).tmp1
  1718. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1719. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1720. @del $(O)\$(@B).tmp1
  1721. @del $(O)\$(@B).tmp2
  1722. @del sysoc.txt1
  1723. $(STAMP)
  1724. $(TSBINPLACE_CMD)
  1725. $(O)\ntprint.inf: $(_INX)\ntprint.inx $(_INX)\feprint.inx \
  1726. $(_LNG)\ntprint.txt
  1727. $(CC) $(PREFLAGS) -I$(_INX) $(_INX)\ntprint.inx > $(O)\$(@B).txt1
  1728. prodfilt $(O)\$(@B).txt1 $(O)\$(@B).tmp1 +$(PLATFORM_SWITCH)
  1729. $(CC) $(PREFLAGS) -I$(_INX) $(_LNG)\ntprint.txt > $(O)\$(@B).txt2
  1730. prodfilt $(O)\$(@B).txt2 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  1731. unitext $(UNITEXT_OPT) $(O)\$(@B).tmp1 $(O)\$(@B).tmp11
  1732. unitext $(UNITEXT_OPT) $(O)\$(@B).tmp2 $(O)\$(@B).tmp22
  1733. copy $(O)\$(@B).tmp11+$(O)\$(@B).tmp22 $@
  1734. @del $(O)\$(@B).tmp1 $(O)\$(@B).tmp2
  1735. @del $(O)\$(@B).tmp11 $(O)\$(@B).tmp22
  1736. @del $(O)\$(@B).txt1 $(O)\$(@B).txt2
  1737. $(STAMP)
  1738. $(TSBINPLACE_CMD)
  1739. $(O)\prtupg9x.inf: $(_INX)\prtupg9x.inx $(_LNG)\prtupg9x.txt
  1740. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1741. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1742. @del $(O)\$(@B).txt1
  1743. $(STAMP)
  1744. $(TSBINPLACE_CMD)
  1745. $(O)\printupg.inf: $(_INX)\printupg.inx $(_LNG)\printupg.txt
  1746. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1747. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1748. @del $(O)\$(@B).txt1
  1749. $(STAMP)
  1750. $(TSBINPLACE_CMD)
  1751. $(O)\bfcab.inf: $(_INX)\bfcab.inx $(_LNG)\bfcab.txt
  1752. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1753. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1754. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1755. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1756. @del $(O)\$(@B).tmp1
  1757. @del $(O)\$(@B).tmp2
  1758. @del $(O)\$(@B).txt1
  1759. $(TSBINPLACE_CMD)
  1760. $(O)\brmfcmdm.inf: $(_INX)\brmfcmdm.inx $(_LNG)\brmfcmdm.txt
  1761. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1762. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1763. @del $(O)\$(@B).txt1
  1764. $(STAMP)
  1765. $(TSBINPLACE_CMD)
  1766. $(O)\brmfcmf.inf: $(_INX)\brmfcmf.inx $(_LNG)\brmfcmf.txt
  1767. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1768. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1769. @del $(O)\$(@B).txt1
  1770. $(STAMP)
  1771. $(TSBINPLACE_CMD)
  1772. $(O)\brmfcsto.inf: $(_INX)\brmfcsto.inx $(_LNG)\brmfcsto.txt
  1773. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1774. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1775. @del $(O)\$(@B).txt1
  1776. $(STAMP)
  1777. $(TSBINPLACE_CMD)
  1778. $(O)\brmfcumd.inf: $(_INX)\brmfcumd.inx $(_LNG)\brmfcumd.txt
  1779. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1780. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1781. @del $(O)\$(@B).txt1
  1782. $(STAMP)
  1783. $(TSBINPLACE_CMD)
  1784. $(O)\brmfcwia.inf: $(_INX)\brmfcwia.inx $(_LNG)\brmfcwia.txt
  1785. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1786. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1787. @del $(O)\$(@B).txt1
  1788. $(STAMP)
  1789. $(TSBINPLACE_CMD)
  1790. $(O)\brmfport.inf: $(_INX)\brmfport.inx $(_LNG)\brmfport.txt
  1791. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1792. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1793. @del $(O)\$(@B).txt1
  1794. $(STAMP)
  1795. $(TSBINPLACE_CMD)
  1796. $(O)\apps.inf: $(_INX)\apps.inx $(_LNG)\apps.txt
  1797. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1798. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1799. @del $(O)\$(@B).txt1
  1800. $(TSBINPLACE_CMD)
  1801. $(O)\apcompat.inf: $(_INX)\apcompat.inx \
  1802. !if $(WIN64)
  1803. $(O)\wowlist.inf \
  1804. !endif
  1805. $(_LNG)\apcompat.txt
  1806. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1807. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1808. !if $(WIN64)
  1809. copy $@ $(O)\$(@B).tmp3
  1810. wowlist -i $@ -c $(O)\wowlist.inf -as -f w -d $(O)\apcompat.wow -o $(O)\$(@B).tmp4
  1811. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  1812. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  1813. !endif
  1814. @del $(O)\$(@B).txt1
  1815. $(TSBINPLACE_CMD)
  1816. !if $(WIN64)
  1817. $(O)\apcompat.wow: $(O)\apcompat.inf
  1818. !endif
  1819. $(O)\keyboard.inf: $(_INX)\keyboard.inx $(_LNG)\keyboard.txt
  1820. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1821. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1822. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1823. @del $(O)\$(@B).tmp1
  1824. @del $(O)\$(@B).txt1
  1825. $(STAMP)
  1826. $(TSBINPLACE_CMD)
  1827. $(O)\langinst.inf: $(_INX)\langinst.inx $(_LNG)\langinst.txt
  1828. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1829. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1830. @del $(O)\$(@B).txt1
  1831. $(STAMP)
  1832. $(TSBINPLACE_CMD)
  1833. $(O)\legcydrv.inf: $(_INX)\legcydrv.inx $(_LNG)\legcydrv.txt
  1834. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1835. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1836. @del $(O)\$(@B).txt1
  1837. $(STAMP)
  1838. $(TSBINPLACE_CMD)
  1839. $(O)\lwusbhid.inf: $(_INX)\lwusbhid.inx $(_LNG)\lwusbhid.txt
  1840. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1841. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1842. @del $(O)\$(@B).txt1
  1843. $(STAMP)
  1844. $(TSBINPLACE_CMD)
  1845. $(O)\lwngmadi.inf: $(_INX)\lwngmadi.inx $(_LNG)\lwngmadi.txt
  1846. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1847. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1848. @del $(O)\$(@B).txt1
  1849. $(STAMP)
  1850. $(TSBINPLACE_CMD)
  1851. $(O)\machine.inf: $(_INX)\machine.inx $(_LNG)\machine.txt
  1852. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1853. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1854. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  1855. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  1856. @del $(O)\$(@B).tmp1
  1857. @del $(O)\$(@B).tmp2
  1858. @del $(O)\$(@B).txt1
  1859. $(STAMP)
  1860. $(TSBINPLACE_CMD)
  1861. $(O)\mchgr.inf: $(_INX)\mchgr.inx $(_LNG)\mchgr.txt
  1862. $(CC) $(PREFLAGS) $(PREFILTFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1863. $(CC) $(PREFILTFLAGS) $(_INX)\$(@B).inx > $(O)\$(@B).inx1
  1864. copy $(O)\$(@B).inx1+$(O)\$(@B).txt1 $@
  1865. @del $(O)\$(@B).txt1
  1866. @del $(O)\$(@B).inx1
  1867. $(STAMP)
  1868. $(TSBINPLACE_CMD)
  1869. $(O)\mshdc.inf: $(_INX)\mshdc.inx $(_LNG)\mshdc.txt
  1870. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1871. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1872. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1873. @del $(O)\$(@B).tmp1
  1874. @del $(O)\$(@B).txt1
  1875. $(STAMP)
  1876. $(TSBINPLACE_CMD)
  1877. $(O)\flash.inf: $(_INX)\flash.inx $(_LNG)\flash.txt
  1878. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1879. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1880. @del $(O)\$(@B).txt1
  1881. $(STAMP)
  1882. $(TSBINPLACE_CMD)
  1883. $(O)\msmouse.inf: $(_INX)\msmouse.inx $(_LNG)\msmouse.txt
  1884. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1885. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1886. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1887. @del $(O)\$(@B).tmp1
  1888. @del $(O)\$(@B).txt1
  1889. $(STAMP)
  1890. $(TSBINPLACE_CMD)
  1891. $(O)\msports.inf: $(_INX)\msports.inx $(_LNG)\msports.txt
  1892. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1893. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1894. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1895. @del $(O)\$(@B).tmp1
  1896. @del $(O)\$(@B).txt1
  1897. $(STAMP)
  1898. $(TSBINPLACE_CMD)
  1899. $(O)\cyclad-z.inf: $(_INX)\cyclad-z.inx $(_LNG)\cyclad-z.txt
  1900. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1901. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1902. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1903. @del $(O)\$(@B).tmp1
  1904. @del $(O)\$(@B).txt1
  1905. $(STAMP)
  1906. $(TSBINPLACE_CMD)
  1907. $(O)\cyclom-y.inf: $(_INX)\cyclom-y.inx $(_LNG)\cyclom-y.txt
  1908. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1909. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1910. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1911. @del $(O)\$(@B).tmp1
  1912. @del $(O)\$(@B).txt1
  1913. $(STAMP)
  1914. $(TSBINPLACE_CMD)
  1915. $(O)\cyyport.inf: $(_INX)\cyyport.inx $(_LNG)\cyyport.txt
  1916. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1917. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1918. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1919. @del $(O)\$(@B).tmp1
  1920. @del $(O)\$(@B).txt1
  1921. $(STAMP)
  1922. $(TSBINPLACE_CMD)
  1923. $(O)\cyzport.inf: $(_INX)\cyzport.inx $(_LNG)\cyzport.txt
  1924. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1925. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1926. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1927. @del $(O)\$(@B).tmp1
  1928. @del $(O)\$(@B).txt1
  1929. $(STAMP)
  1930. $(TSBINPLACE_CMD)
  1931. $(O)\mxboard.inf: $(_INX)\mxboard.inx $(_LNG)\mxboard.txt
  1932. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1933. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1934. @del $(O)\$(@B).txt1
  1935. $(STAMP)
  1936. $(TSBINPLACE_CMD)
  1937. $(O)\mxport.inf: $(_INX)\mxport.inx $(_LNG)\mxport.txt
  1938. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1939. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1940. @del $(O)\$(@B).txt1
  1941. $(STAMP)
  1942. $(TSBINPLACE_CMD)
  1943. $(O)\wceusbsh.inf: $(_INX)\wceusbsh.inx $(_LNG)\wceusbsh.txt
  1944. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1945. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1946. @del $(O)\$(@B).txt1
  1947. $(STAMP)
  1948. $(TSBINPLACE_CMD)
  1949. $(O)\multiprt.inf: $(_INX)\multiprt.inx $(_LNG)\multiprt.txt
  1950. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1951. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1952. @del $(O)\$(@B).txt1
  1953. $(STAMP)
  1954. $(TSBINPLACE_CMD)
  1955. $(O)\ntapm.inf: $(_INX)\ntapm.inx $(_LNG)\ntapm.txt
  1956. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1957. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1958. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1959. @del $(O)\$(@B).tmp1
  1960. @del $(O)\$(@B).txt1
  1961. $(STAMP)
  1962. $(TSBINPLACE_CMD)
  1963. $(O)\pnpscsi.inf: $(_INX)\pnpscsi.inx $(_LNG)\pnpscsi.txt
  1964. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1965. $(CC) $(PREFILTFLAGS) $(_INX)\$(@B).inx > $(O)\$(@B).inx1
  1966. copy $(O)\$(@B).inx1+$(O)\$(@B).txt1 $@
  1967. @del $(O)\$(@B).tmp1
  1968. @del $(O)\$(@B).txt1
  1969. $(STAMP)
  1970. $(TSBINPLACE_CMD)
  1971. $(O)\ramdisk.inf: $(_INX)\ramdisk.inx $(_LNG)\ramdisk.txt
  1972. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1973. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  1974. @del $(O)\$(@B).txt1
  1975. $(STAMP)
  1976. $(TSBINPLACE_CMD)
  1977. !if !$(WIN64)
  1978. $(O)\scsi.inf: $(_INX)\scsi.inx $(_LNG)\scsi.txt
  1979. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1980. $(CC) $(PREFILTFLAGS) $(_INX)\$(@B).inx > $(O)\$(@B).inx1
  1981. copy $(O)\$(@B).inx1+$(O)\$(@B).txt1 $@
  1982. @del $(O)\$(@B).tmp1
  1983. @del $(O)\$(@B).txt1
  1984. $(STAMP)
  1985. $(TSBINPLACE_CMD)
  1986. !endif
  1987. $(O)\scsidev.inf: $(_INX)\scsidev.inx $(_LNG)\scsidev.txt
  1988. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1989. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1990. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  1991. @del $(O)\$(@B).tmp1
  1992. @del $(O)\$(@B).txt1
  1993. $(STAMP)
  1994. $(TSBINPLACE_CMD)
  1995. $(O)\sdwndr2k.inf: $(_INX)\sdwndr2k.inx $(_LNG)\sdwndr2k.txt
  1996. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  1997. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  1998. prodfilt -s $(O)\$(@B).tmp1 $@ +@
  1999. @del $(O)\$(@B).tmp1
  2000. @del $(O)\$(@B).txt1
  2001. $(STAMP)
  2002. $(TSBINPLACE_CMD)
  2003. $(O)\smartcrd.inf: $(_INX)\smartcrd.inx $(_LNG)\smartcrd.txt
  2004. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2005. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2006. @del $(O)\$(@B).txt1
  2007. $(STAMP)
  2008. $(TSBINPLACE_CMD)
  2009. $(O)\swflash.inf: $(_INX)\swflash.inx $(_LNG)\swflash.txt
  2010. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2011. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2012. @del $(O)\$(@B).txt1
  2013. $(STAMP)
  2014. $(TSBINPLACE_CMD)
  2015. $(O)\swnt.inf: $(_INX)\swnt.inx $(_LNG)\swnt.txt
  2016. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2017. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2018. prodfilt $(O)\$(@B).tmp1 $@ +$(PRODSWITCH)
  2019. @del $(O)\$(@B).tmp1
  2020. @del $(O)\$(@B).txt1
  2021. $(STAMP)
  2022. $(TSBINPLACE_CMD)
  2023. $(O)\tape.inf: $(_INX)\tape.inx $(_LNG)\tape.txt
  2024. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2025. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2026. @del $(O)\$(@B).txt1
  2027. $(STAMP)
  2028. $(TSBINPLACE_CMD)
  2029. $(O)\vgx.inf: $(_INX)\vgx.inx \
  2030. !if $(WIN64)
  2031. $(O)\wowlist.inf \
  2032. !endif
  2033. $(_LNG)\vgx.txt
  2034. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2035. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2036. !if $(WIN64)
  2037. copy $@ $(O)\$(@B).tmp3
  2038. wowlist -i $@ -c $(O)\wowlist.inf -as -f w -d $(O)\vgx.wow -o $(O)\$(@B).tmp4
  2039. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  2040. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  2041. !endif
  2042. @del $(O)\$(@B).txt1
  2043. $(STAMP)
  2044. $(TSBINPLACE_CMD)
  2045. !if $(WIN64)
  2046. $(O)\vgx.wow: $(O)\vgx.inf
  2047. !endif
  2048. $(O)\volume.inf: $(_INX)\volume.inx $(_LNG)\volume.txt
  2049. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2050. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2051. @del $(O)\$(@B).txt1
  2052. $(STAMP)
  2053. $(TSBINPLACE_CMD)
  2054. $(O)\volsnap.inf: $(_INX)\volsnap.inx $(_LNG)\volsnap.txt
  2055. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2056. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2057. @del $(O)\$(@B).txt1
  2058. $(STAMP)
  2059. $(TSBINPLACE_CMD)
  2060. $(O)\prodspec.ini: $(_INX)\prodspec.inx $(_LNG)\prodspec.txt
  2061. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2062. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2063. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2064. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2065. @del $(O)\$(@B).tmp1
  2066. @del $(O)\$(@B).tmp2
  2067. @del $(O)\$(@B).txt1
  2068. echo BitVersion=40 >> $@
  2069. $(STAMP)
  2070. $(TSBINPLACE_CMD)
  2071. $(O)\prod128.ini: $(_INX)\prodspec.inx $(_LNG)\prodspec.txt
  2072. $(CC) $(PREFLAGS) $(_LNG)\prodspec.txt > prodspec.txt1
  2073. copy $(_INX)\prodspec.inx+prodspec.txt1 $(O)\$(@B).tmp1
  2074. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2075. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2076. @del $(O)\$(@B).tmp1
  2077. @del $(O)\$(@B).tmp2
  2078. @del prodspec.txt1
  2079. echo BitVersion=128 >> $@
  2080. $(STAMP)
  2081. $(TSBINPLACE_CMD)
  2082. !if $(386)
  2083. $(O)\win95upg.inf: $(_INX)\win95upg.inx $(_LNG)\win95upg.txt
  2084. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2085. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2086. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  2087. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  2088. @del $(O)\$(@B).tmp1
  2089. @del $(O)\$(@B).tmp2
  2090. @del $(O)\$(@B).txt1
  2091. $(STAMP)
  2092. $(WIN9XUPGBINPLACE_CMD)
  2093. $(O)\migdb.inf: $(_INX)\migdb.inx $(_LNG)\migdb.txt
  2094. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2095. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2096. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  2097. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  2098. @del $(O)\$(@B).tmp1
  2099. @del $(O)\$(@B).tmp2
  2100. @del $(O)\$(@B).txt1
  2101. @del $(O)\$(@B).tmpInx
  2102. $(STAMP)
  2103. $(WIN9XUPGBINPLACE_CMD)
  2104. $(O)\vscandb.inf: $(_INX)\vscandb.inx $(_LNG)\vscandb.txt
  2105. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2106. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2107. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  2108. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  2109. @del $(O)\$(@B).tmp1
  2110. @del $(O)\$(@B).tmp2
  2111. @del $(O)\$(@B).txt1
  2112. $(STAMP)
  2113. $(WIN9XUPGBINPLACE_CMD)
  2114. $(O)\wkstamig.inf: $(_INX)\wkstamig.inx $(_LNG)\wkstamig.txt
  2115. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2116. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2117. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  2118. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  2119. @del $(O)\$(@B).tmp1
  2120. @del $(O)\$(@B).tmp2
  2121. @del $(O)\$(@B).txt1
  2122. $(STAMP)
  2123. $(TSBINPLACE_CMD)
  2124. $(O)\usermig.inf: $(_INX)\usermig.inx $(_LNG)\usermig.txt
  2125. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2126. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2127. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  2128. prodfilt $(O)\$(@B).tmp2 $@ +$(PRODSWITCH)
  2129. @del $(O)\$(@B).tmp1
  2130. @del $(O)\$(@B).tmp2
  2131. @del $(O)\$(@B).txt1
  2132. $(STAMP)
  2133. $(TSBINPLACE_CMD)
  2134. !endif
  2135. $(O)\filegen.inf: $(_INX)\filegen.inx $(_LNG)\filegen.txt
  2136. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2137. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2138. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2139. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2140. @del $(O)\$(@B).tmp1
  2141. @del $(O)\$(@B).tmp2
  2142. @del $(O)\$(@B).txt1
  2143. $(STAMP)
  2144. $(TSBINPLACE_CMD)
  2145. $(O)\ntautorun.inf: $(_INX)\ntautorun.inx $(_LNG)\ntautorun.txt
  2146. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2147. copy /A $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2148. @del $(O)\$(@B).txt1
  2149. $(TSBINPLACE_CMD)
  2150. $(O)\acpi.inf: $(_INX)\acpi.inx $(_LNG)\acpi.txt
  2151. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2152. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2153. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2154. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2155. @del $(O)\$(@B).tmp1
  2156. @del $(O)\$(@B).tmp2
  2157. @del $(O)\$(@B).txt1
  2158. $(STAMP)
  2159. $(TSBINPLACE_CMD)
  2160. $(O)\hiddigi.inf: $(_INX)\hiddigi.inx $(_LNG)\hiddigi.txt
  2161. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2162. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2163. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2164. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2165. @del $(O)\$(@B).tmp1
  2166. @del $(O)\$(@B).tmp2
  2167. @del $(O)\$(@B).txt1
  2168. $(STAMP)
  2169. $(TSBINPLACE_CMD)
  2170. $(O)\hidserv.inf: $(_INX)\hidserv.inx $(_LNG)\hidserv.txt
  2171. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2172. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2173. @del $(O)\$(@B).txt1
  2174. $(STAMP)
  2175. $(TSBINPLACE_CMD)
  2176. $(O)\irbus.inf: $(_INX)\irbus.inx $(_LNG)\irbus.txt
  2177. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2178. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2179. @del $(O)\$(@B).txt1
  2180. $(STAMP)
  2181. $(TSBINPLACE_CMD)
  2182. $(O)\input.inf: $(_INX)\input.inx $(_LNG)\input.txt
  2183. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2184. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2185. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2186. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2187. @del $(O)\$(@B).tmp1
  2188. @del $(O)\$(@B).tmp2
  2189. @del $(O)\$(@B).txt1
  2190. $(STAMP)
  2191. $(TSBINPLACE_CMD)
  2192. $(O)\usbprint.inf: $(_INX)\usbprint.inx $(_LNG)\usbprint.txt
  2193. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2194. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2195. @del $(O)\$(@B).txt1
  2196. $(STAMP)
  2197. $(TSBINPLACE_CMD)
  2198. $(O)\usb.inf: $(_INX)\usb.inx $(_LNG)\usb.txt
  2199. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2200. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2201. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  2202. @del $(O)\$(@B).tmp1
  2203. @del $(O)\$(@B).txt1
  2204. $(STAMP)
  2205. $(TSBINPLACE_CMD)
  2206. $(O)\usbstor.inf: $(_INX)\usbstor.inx $(_LNG)\usbstor.txt
  2207. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2208. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2209. @del $(O)\$(@B).txt1
  2210. $(STAMP)
  2211. $(TSBINPLACE_CMD)
  2212. $(O)\usbport.inf: $(_INX)\usbport.inx $(_LNG)\usbport.txt
  2213. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2214. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2215. @del $(O)\$(@B).txt1
  2216. $(STAMP)
  2217. $(TSBINPLACE_CMD)
  2218. $(O)\dbc.inf: $(_INX)\dbc.inx $(_LNG)\dbc.txt
  2219. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2220. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2221. @del $(O)\$(@B).txt1
  2222. $(STAMP)
  2223. $(TSBINPLACE_CMD)
  2224. $(O)\ccdecode.inf: $(_INX)\ccdecode.inx $(_LNG)\ccdecode.txt
  2225. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2226. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2227. @del $(O)\$(@B).txt1
  2228. $(STAMP)
  2229. $(TSBINPLACE_CMD)
  2230. $(O)\nabtsfec.inf: $(_INX)\nabtsfec.inx $(_LNG)\nabtsfec.txt
  2231. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2232. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2233. @del $(O)\$(@B).txt1
  2234. $(STAMP)
  2235. $(TSBINPLACE_CMD)
  2236. $(O)\wstcodec.inf: $(_INX)\wstcodec.inx $(_LNG)\wstcodec.txt
  2237. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2238. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2239. @del $(O)\$(@B).txt1
  2240. $(STAMP)
  2241. $(TSBINPLACE_CMD)
  2242. $(O)\cdrom.inf: $(_INX)\cdrom.inx $(_LNG)\cdrom.txt
  2243. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2244. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2245. @del $(O)\$(@B).txt1
  2246. $(STAMP)
  2247. $(TSBINPLACE_CMD)
  2248. $(O)\cpu.inf: $(_INX)\cpu.inx $(_LNG)\cpu.txt
  2249. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(@B).txt1
  2250. copy $(_INX)\$(@B).inx+$(@B).txt1 $@
  2251. @del $(@B).txt1
  2252. $(STAMP)
  2253. $(TSBINPLACE_CMD)
  2254. $(O)\disk.inf: $(_INX)\disk.inx $(_LNG)\disk.txt
  2255. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2256. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2257. @del $(O)\$(@B).txt1
  2258. $(STAMP)
  2259. $(TSBINPLACE_CMD)
  2260. $(O)\gameport.inf: $(_INX)\gameport.inx $(_LNG)\gameport.txt
  2261. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2262. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2263. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2264. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2265. @del $(O)\$(@B).tmp1
  2266. @del $(O)\$(@B).tmp2
  2267. @del $(O)\$(@B).txt1
  2268. $(STAMP)
  2269. $(TSBINPLACE_CMD)
  2270. $(O)\wdmjoy.inf: $(_INX)\wdmjoy.inx $(_LNG)\wdmjoy.txt
  2271. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2272. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2273. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  2274. @del $(O)\$(@B).tmp1
  2275. @del $(O)\$(@B).txt1
  2276. $(STAMP)
  2277. $(TSBINPLACE_CMD)
  2278. $(O)\ntgrip.inf: $(_INX)\ntgrip.inx $(_LNG)\ntgrip.txt
  2279. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2280. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2281. @del $(O)\$(@B).txt1
  2282. $(STAMP)
  2283. $(TSBINPLACE_CMD)
  2284. # Alway filter for server product, other products used for other builds
  2285. $(O)\dimaps.inf: $(_INX)\dimaps.inx $(_LNG)\dimaps.txt
  2286. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2287. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2288. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +s
  2289. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2290. @del $(O)\$(@B).tmp1
  2291. @del $(O)\$(@B).tmp2
  2292. @del $(O)\$(@B).txt1
  2293. $(STAMP)
  2294. $(TSBINPLACE_CMD)
  2295. $(O)\battery.inf: $(_INX)\battery.inx $(_LNG)\battery.txt
  2296. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2297. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2298. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2299. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2300. @del $(O)\$(@B).tmp1
  2301. @del $(O)\$(@B).tmp2
  2302. @del $(O)\$(@B).txt1
  2303. $(STAMP)
  2304. $(TSBINPLACE_CMD)
  2305. $(O)\pcmcia.inf: $(_INX)\pcmcia.inx $(_LNG)\pcmcia.txt
  2306. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2307. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2308. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  2309. @del $(O)\$(@B).tmp1
  2310. @del $(O)\$(@B).txt1
  2311. $(STAMP)
  2312. $(TSBINPLACE_CMD)
  2313. $(O)\memcard.inf: $(_INX)\memcard.inx $(_LNG)\memcard.txt
  2314. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2315. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2316. @del $(O)\$(@B).txt1
  2317. $(STAMP)
  2318. $(TSBINPLACE_CMD)
  2319. $(O)\memory.inf: $(_INX)\memory.inx $(_LNG)\memory.txt
  2320. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(@B).txt1
  2321. copy $(_INX)\$(@B).inx+$(@B).txt1 $@
  2322. @del $(@B).txt1
  2323. $(STAMP)
  2324. $(TSBINPLACE_CMD)
  2325. $(O)\memstpci.inf: $(_INX)\memstpci.inx $(_LNG)\memstpci.txt
  2326. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2327. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2328. @del $(O)\$(@B).txt1
  2329. $(STAMP)
  2330. $(TSBINPLACE_CMD)
  2331. $(O)\sonypvu1.inf: $(_INX)\sonypvu1.inx $(_LNG)\sonypvu1.txt
  2332. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2333. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2334. @del $(O)\$(@B).txt1
  2335. $(STAMP)
  2336. $(TSBINPLACE_CMD)
  2337. $(O)\mf.inf: $(_INX)\mf.inx $(_LNG)\mf.txt
  2338. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2339. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2340. @del $(O)\$(@B).txt1
  2341. $(STAMP)
  2342. $(TSBINPLACE_CMD)
  2343. $(O)\mfsocket.inf: $(_INX)\mfsocket.inx $(_LNG)\mfsocket.txt
  2344. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2345. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2346. @del $(O)\$(@B).txt1
  2347. $(STAMP)
  2348. $(TSBINPLACE_CMD)
  2349. $(O)\1394.inf: $(_INX)\1394.inx $(_LNG)\1394.txt
  2350. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2351. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2352. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  2353. @del $(O)\$(@B).tmp1
  2354. @del $(O)\$(@B).txt1
  2355. $(STAMP)
  2356. $(TSBINPLACE_CMD)
  2357. $(O)\1394vdbg.inf: $(_INX)\1394vdbg.inx $(_LNG)\1394vdbg.txt
  2358. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2359. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2360. prodfilt $(O)\$(@B).tmp1 $@ +$(PLATFORM_SWITCH)
  2361. @del $(O)\$(@B).tmp1
  2362. @del $(O)\$(@B).txt1
  2363. $(STAMP)
  2364. $(TSBINPLACE_CMD)
  2365. $(O)\sbp2.inf: $(_INX)\sbp2.inx $(_LNG)\sbp2.txt
  2366. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2367. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2368. @del $(O)\$(@B).txt1
  2369. $(STAMP)
  2370. $(TSBINPLACE_CMD)
  2371. $(O)\61883.inf: $(_INX)\61883.inx $(_LNG)\61883.txt
  2372. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2373. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2374. @del $(O)\$(@B).txt1
  2375. $(STAMP)
  2376. $(TSBINPLACE_CMD)
  2377. $(O)\avc.inf: $(_INX)\avc.inx $(_LNG)\avc.txt
  2378. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2379. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2380. @del $(O)\$(@B).txt1
  2381. $(STAMP)
  2382. $(TSBINPLACE_CMD)
  2383. $(O)\oobe.inf: $(_INX)\oobe.inx $(_LNG)\oobe.txt
  2384. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2385. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2386. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2387. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2388. @del $(O)\$(@B).tmp1
  2389. @del $(O)\$(@B).tmp2
  2390. @del $(O)\$(@B).txt1
  2391. $(STAMP)
  2392. $(TSBINPLACE_CMD)
  2393. $(O)\oobemui.inf: $(_INX)\oobemui.inx $(_LNG)\oobemui.txt
  2394. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2395. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2396. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2397. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2398. @del $(O)\$(@B).tmp1
  2399. @del $(O)\$(@B).tmp2
  2400. @del $(O)\$(@B).txt1
  2401. $(STAMP)
  2402. $(TSBINPLACE_CMD)
  2403. $(O)\genprint.inf: $(_INX)\genprint.inx $(_LNG)\genprint.txt
  2404. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2405. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2406. @del $(O)\$(@B).txt1
  2407. $(STAMP)
  2408. $(TSBINPLACE_CMD)
  2409. $(O)\guidrvs.inf: $(_INX)\guidrvs.inx
  2410. prodfilt $(_INX)\guidrvs.inx $(O)\$(@B).tmp +$(PRODSWITCH)
  2411. prodfilt $(O)\$(@B).tmp $@ +$(PLATFORM_SWITCH)
  2412. @del $(O)\$(@B).tmp
  2413. $(TSBINPLACE_CMD)
  2414. $(O)\icam3.inf: $(_INX)\icam3.inx $(_LNG)\icam3.txt
  2415. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2416. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2417. @del $(O)\$(@B).txt1
  2418. $(STAMP)
  2419. $(TSBINPLACE_CMD)
  2420. $(O)\icam4usb.inf: $(_INX)\icam4usb.inx $(_LNG)\icam4usb.txt
  2421. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2422. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2423. @del $(O)\$(@B).txt1
  2424. $(STAMP)
  2425. $(TSBINPLACE_CMD)
  2426. $(O)\icam5usb.inf: $(_INX)\icam5usb.inx $(_LNG)\icam5usb.txt
  2427. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2428. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2429. @del $(O)\$(@B).txt1
  2430. $(STAMP)
  2431. $(TSBINPLACE_CMD)
  2432. $(O)\image.inf: $(_INX)\image.inx $(_LNG)\image.txt
  2433. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2434. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp
  2435. prodfilt $(O)\$(@B).tmp $@ +$(PLATFORM_SWITCH)
  2436. @del $(O)\$(@B).tmp
  2437. @del $(O)\$(@B).txt1
  2438. $(STAMP)
  2439. $(TSBINPLACE_CMD)
  2440. $(O)\ovcam.inf: $(_INX)\ovcam.inx $(_LNG)\ovcam.txt
  2441. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2442. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2443. @del $(O)\$(@B).txt1
  2444. $(STAMP)
  2445. $(TSBINPLACE_CMD)
  2446. $(O)\ovcomp.inf: $(_INX)\ovcomp.inx $(_LNG)\ovcomp.txt
  2447. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2448. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2449. @del $(O)\$(@B).txt1
  2450. $(STAMP)
  2451. $(TSBINPLACE_CMD)
  2452. $(O)\ovsound.inf: $(_INX)\ovsound.inx $(_LNG)\ovsound.txt
  2453. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2454. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2455. @del $(O)\$(@B).txt1
  2456. $(STAMP)
  2457. $(TSBINPLACE_CMD)
  2458. $(O)\msdv.inf: $(_INX)\msdv.inx $(_LNG)\msdv.txt
  2459. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2460. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2461. @del $(O)\$(@B).txt1
  2462. $(STAMP)
  2463. $(TSBINPLACE_CMD)
  2464. $(O)\mstape.inf: $(_INX)\mstape.inx $(_LNG)\mstape.txt
  2465. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2466. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2467. @del $(O)\$(@B).txt1
  2468. $(STAMP)
  2469. $(TSBINPLACE_CMD)
  2470. $(O)\tsbvcap.inf: $(_INX)\tsbvcap.inx $(_LNG)\tsbvcap.txt
  2471. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2472. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2473. @del $(O)\$(@B).txt1
  2474. $(STAMP)
  2475. $(TSBINPLACE_CMD)
  2476. $(O)\ibmvcap.inf: $(_INX)\ibmvcap.inx $(_LNG)\ibmvcap.txt
  2477. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2478. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2479. @del $(O)\$(@B).txt1
  2480. $(STAMP)
  2481. $(TSBINPLACE_CMD)
  2482. $(O)\sti.inf: $(_INX)\sti.inx $(_LNG)\sti.txt
  2483. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2484. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp
  2485. prodfilt $(O)\$(@B).tmp $@ +$(PLATFORM_SWITCH)
  2486. @del $(O)\$(@B).tmp
  2487. @del $(O)\$(@B).txt1
  2488. $(STAMP)
  2489. $(TSBINPLACE_CMD)
  2490. $(O)\ricoh.inf: $(_INX)\ricoh.inx $(_LNG)\ricoh.txt
  2491. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2492. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2493. @del $(O)\$(@B).txt1
  2494. $(STAMP)
  2495. $(TSBINPLACE_CMD)
  2496. $(O)\kdkscan.inf: $(_INX)\kdkscan.inx $(_LNG)\kdkscan.txt
  2497. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2498. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2499. @del $(O)\$(@B).txt1
  2500. $(STAMP)
  2501. $(TSBINPLACE_CMD)
  2502. $(O)\srusbusd.inf: $(_INX)\srusbusd.inx $(_LNG)\srusbusd.txt
  2503. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2504. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2505. @del $(O)\$(@B).txt1
  2506. $(STAMP)
  2507. $(TSBINPLACE_CMD)
  2508. $(O)\hpdigwia.inf: $(_INX)\hpdigwia.inx $(_LNG)\hpdigwia.txt
  2509. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2510. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2511. @del $(O)\$(@B).txt1
  2512. $(STAMP)
  2513. $(TSBINPLACE_CMD)
  2514. $(O)\stillcam.inf: $(_INX)\stillcam.inx $(_LNG)\stillcam.txt
  2515. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2516. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2517. @del $(O)\$(@B).txt1
  2518. $(STAMP)
  2519. $(TSBINPLACE_CMD)
  2520. $(O)\dot4.inf: $(_INX)\dot4.inx $(_LNG)\dot4.txt
  2521. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2522. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2523. @del $(O)\$(@B).txt1
  2524. $(STAMP)
  2525. $(TSBINPLACE_CMD)
  2526. $(O)\dot4prt.inf: $(_INX)\dot4prt.inx $(_LNG)\dot4prt.txt
  2527. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2528. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2529. @del $(O)\$(@B).txt1
  2530. $(STAMP)
  2531. $(TSBINPLACE_CMD)
  2532. $(O)\hpojscan.inf: $(_INX)\hpojscan.inx $(_LNG)\hpojscan.txt
  2533. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2534. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2535. @del $(O)\$(@B).txt1
  2536. $(STAMP)
  2537. $(TSBINPLACE_CMD)
  2538. $(O)\hpscan.inf: $(_INX)\hpscan.inx $(_LNG)\hpscan.txt
  2539. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2540. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2541. @del $(O)\$(@B).txt1
  2542. $(STAMP)
  2543. $(TSBINPLACE_CMD)
  2544. $(O)\xscan_xp.inf: $(_INX)\xscan_xp.inx $(_LNG)\xscan_xp.txt
  2545. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2546. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2547. @del $(O)\$(@B).txt1
  2548. $(STAMP)
  2549. $(TSBINPLACE_CMD)
  2550. $(O)\pmxmcro.inf: $(_INX)\pmxmcro.inx $(_LNG)\pmxmcro.txt
  2551. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2552. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2553. @del $(O)\$(@B).txt1
  2554. $(STAMP)
  2555. $(TSBINPLACE_CMD)
  2556. $(O)\epcfw2k.inf: $(_INX)\epcfw2k.inx $(_LNG)\epcfw2k.txt
  2557. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2558. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2559. @del $(O)\$(@B).txt1
  2560. $(STAMP)
  2561. $(TSBINPLACE_CMD)
  2562. $(O)\epsnscan.inf: $(_INX)\epsnscan.inx $(_LNG)\epsnscan.txt
  2563. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2564. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2565. @del $(O)\$(@B).txt1
  2566. $(STAMP)
  2567. $(TSBINPLACE_CMD)
  2568. $(O)\epsnmfp.inf: $(_INX)\epsnmfp.inx $(_LNG)\epsnmfp.txt
  2569. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2570. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2571. @del $(O)\$(@B).txt1
  2572. $(STAMP)
  2573. $(TSBINPLACE_CMD)
  2574. $(O)\epstw2k.inf: $(_INX)\epstw2k.inx $(_LNG)\epstw2k.txt
  2575. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2576. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2577. @del $(O)\$(@B).txt1
  2578. $(STAMP)
  2579. $(TSBINPLACE_CMD)
  2580. $(O)\fjtscan.inf: $(_INX)\fjtscan.inx $(_LNG)\fjtscan.txt
  2581. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2582. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2583. @del $(O)\$(@B).txt1
  2584. $(STAMP)
  2585. $(TSBINPLACE_CMD)
  2586. $(O)\acerscan.inf: $(_INX)\acerscan.inx $(_LNG)\acerscan.txt
  2587. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2588. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2589. @del $(O)\$(@B).txt1
  2590. $(STAMP)
  2591. $(TSBINPLACE_CMD)
  2592. $(O)\kdk2x0.inf: $(_INX)\kdk2x0.inx $(_LNG)\kdk2x0.txt
  2593. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2594. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2595. @del $(O)\$(@B).txt1
  2596. $(STAMP)
  2597. $(TSBINPLACE_CMD)
  2598. $(O)\kodak.inf: $(_INX)\kodak.inx $(_LNG)\kodak.txt
  2599. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2600. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2601. @del $(O)\$(@B).txt1
  2602. $(STAMP)
  2603. $(TSBINPLACE_CMD)
  2604. $(O)\ptpusb.inf: $(_INX)\ptpusb.inx $(_LNG)\ptpusb.txt
  2605. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2606. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2607. @del $(O)\$(@B).txt1
  2608. $(STAMP)
  2609. $(TSBINPLACE_CMD)
  2610. $(O)\bda.inf: $(_INX)\bda.inx $(_LNG)\bda.txt
  2611. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2612. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2613. @del $(O)\$(@B).txt1
  2614. $(STAMP)
  2615. $(TSBINPLACE_CMD)
  2616. $(O)\mscpqpa1.inf: $(_INX)\mscpqpa1.inx $(_LNG)\mscpqpa1.txt
  2617. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2618. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2619. @del $(O)\$(@B).txt1
  2620. $(STAMP)
  2621. $(TSBINPLACE_CMD)
  2622. $(O)\msnike.inf: $(_INX)\msnike.inx $(_LNG)\msnike.txt
  2623. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2624. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2625. @del $(O)\$(@B).txt1
  2626. $(STAMP)
  2627. $(TSBINPLACE_CMD)
  2628. $(O)\msrio.inf: $(_INX)\msrio.inx $(_LNG)\msrio.txt
  2629. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2630. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2631. @del $(O)\$(@B).txt1
  2632. $(STAMP)
  2633. $(TSBINPLACE_CMD)
  2634. $(O)\msrio8.inf: $(_INX)\msrio8.inx $(_LNG)\msrio8.txt
  2635. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2636. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2637. @del $(O)\$(@B).txt1
  2638. $(STAMP)
  2639. $(TSBINPLACE_CMD)
  2640. $(O)\mpe.inf: $(_INX)\mpe.inx $(_LNG)\mpe.txt
  2641. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2642. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2643. @del $(O)\$(@B).txt1
  2644. $(STAMP)
  2645. $(TSBINPLACE_CMD)
  2646. $(O)\ndisip.inf: $(_INX)\ndisip.inx $(_LNG)\ndisip.txt
  2647. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2648. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2649. @del $(O)\$(@B).txt1
  2650. $(STAMP)
  2651. $(TSBINPLACE_CMD)
  2652. $(O)\netbeac.inf: $(_INX)\netbeac.inx $(_LNG)\netbeac.txt
  2653. copy $(_INX)\$(@B).inx+$(_LNG)\$(@B).txt $@
  2654. $(STAMP)
  2655. $(TSBINPLACE_CMD)
  2656. $(O)\netip6.inf: $(_INX)\netip6.inx $(_LNG)\netip6.txt
  2657. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2658. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2659. prodfilt $(O)\$(@B).tmp1 $@ +$(PRODSWITCH)
  2660. @del $(O)\$(@B).tmp1
  2661. @del $(O)\$(@B).txt1
  2662. $(STAMP)
  2663. $(TSBINPLACE_CMD)
  2664. $(O)\nettun.inf: $(_INX)\nettun.inx
  2665. copy $(_INX)\$(@B).inx $(@B).tmp1
  2666. prodfilt $(@B).tmp1 $(@B).tmp2 +$(PRODSWITCH)
  2667. prodfilt $(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2668. @del $(@B).tmp1
  2669. @del $(@B).tmp2
  2670. $(STAMP)
  2671. $(TSBINPLACE_CMD)
  2672. $(O)\phildec.inf: $(_INX)\phildec.inx $(_LNG)\phildec.txt
  2673. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2674. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2675. @del $(O)\$(@B).txt1
  2676. $(STAMP)
  2677. $(TSBINPLACE_CMD)
  2678. $(O)\philtune.inf: $(_INX)\philtune.inx $(_LNG)\philtune.txt
  2679. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2680. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2681. @del $(O)\$(@B).txt1
  2682. $(STAMP)
  2683. $(TSBINPLACE_CMD)
  2684. $(O)\slip.inf: $(_INX)\slip.inx $(_LNG)\slip.txt
  2685. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2686. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2687. @del $(O)\$(@B).txt1
  2688. $(STAMP)
  2689. $(TSBINPLACE_CMD)
  2690. $(O)\streamip.inf: $(_INX)\streamip.inx $(_LNG)\streamip.txt
  2691. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2692. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2693. @del $(O)\$(@B).txt1
  2694. $(STAMP)
  2695. $(TSBINPLACE_CMD)
  2696. $(O)\ks.inf: $(_INX)\ks.inx $(_LNG)\ks.txt
  2697. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2698. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2699. @del $(O)\$(@B).txt1
  2700. $(STAMP)
  2701. $(TSBINPLACE_CMD)
  2702. $(O)\kscaptur.inf: $(_INX)\kscaptur.inx $(_LNG)\kscaptur.txt
  2703. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2704. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2705. @del $(O)\$(@B).txt1
  2706. $(STAMP)
  2707. $(TSBINPLACE_CMD)
  2708. $(O)\ksfilter.inf: $(_INX)\ksfilter.inx $(_LNG)\ksfilter.txt
  2709. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2710. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2711. @del $(O)\$(@B).txt1
  2712. $(STAMP)
  2713. $(TSBINPLACE_CMD)
  2714. $(O)\flpydisk.inf: $(_INX)\flpydisk.inx $(_LNG)\flpydisk.txt
  2715. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2716. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2717. @del $(O)\$(@B).txt1
  2718. $(STAMP)
  2719. $(TSBINPLACE_CMD)
  2720. $(O)\fdc.inf: $(_INX)\fdc.inx $(_LNG)\fdc.txt
  2721. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2722. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2723. @del $(O)\$(@B).txt1
  2724. $(STAMP)
  2725. $(TSBINPLACE_CMD)
  2726. $(O)\dvd.inf: $(_INX)\dvd.inx $(_LNG)\dvd.txt
  2727. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2728. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp
  2729. prodfilt $(O)\$(@B).tmp $@ +$(PLATFORM_SWITCH)
  2730. @del $(O)\$(@B).tmp
  2731. @del $(O)\$(@B).txt1
  2732. $(STAMP)
  2733. $(TSBINPLACE_CMD)
  2734. $(O)\dshowext.inf: $(_INX)\dshowext.inx $(_LNG)\dshowext.txt
  2735. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2736. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2737. @del $(O)\$(@B).txt1
  2738. $(STAMP)
  2739. $(TSBINPLACE_CMD)
  2740. $(O)\phil1vid.inf: $(_INX)\phil1vid.inx $(_LNG)\phil1vid.txt
  2741. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2742. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2743. @del $(O)\$(@B).txt1
  2744. $(STAMP)
  2745. $(TSBINPLACE_CMD)
  2746. $(O)\phdsext.inf: $(_INX)\phdsext.inx $(_LNG)\phdsext.txt
  2747. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2748. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2749. @del $(O)\$(@B).txt1
  2750. $(STAMP)
  2751. $(TSBINPLACE_CMD)
  2752. $(O)\phil2vid.inf: $(_INX)\phil2vid.inx $(_LNG)\phil2vid.txt
  2753. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2754. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2755. @del $(O)\$(@B).txt1
  2756. $(STAMP)
  2757. $(TSBINPLACE_CMD)
  2758. $(O)\camdsh20.inf: $(_INX)\camdsh20.inx $(_LNG)\camdsh20.txt
  2759. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2760. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2761. @del $(O)\$(@B).txt1
  2762. $(STAMP)
  2763. $(TSBINPLACE_CMD)
  2764. $(O)\camvid20.inf: $(_INX)\camvid20.inx $(_LNG)\camvid20.txt
  2765. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2766. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2767. @del $(O)\$(@B).txt1
  2768. $(STAMP)
  2769. $(TSBINPLACE_CMD)
  2770. $(O)\camvid30.inf: $(_INX)\camvid30.inx $(_LNG)\camvid30.txt
  2771. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2772. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2773. @del $(O)\$(@B).txt1
  2774. $(STAMP)
  2775. $(TSBINPLACE_CMD)
  2776. $(O)\mui.inf: $(_INX)\mui.inx $(_LNG)\mui.txt
  2777. copy $(_INX)\$(@B).inx+$(_LNG)\$(@B).txt $(O)\$(@B).tmp1
  2778. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2779. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2780. @del $(O)\$(@B).tmp1
  2781. @del $(O)\$(@B).tmp2
  2782. $(TSBINPLACE_CMD)
  2783. $(O)\wsh.inf: $(_INX)\wsh.inx \
  2784. !if $(WIN64)
  2785. $(O)\wowlist.inf \
  2786. !endif
  2787. $(_LNG)\wsh.txt
  2788. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2789. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2790. !if $(WIN64)
  2791. copy $@ $(O)\$(@B).tmp3
  2792. wowlist -i $@ -c $(O)\wowlist.inf -as -f w -d $(O)\wsh.wow -o $(O)\$(@B).tmp4
  2793. copy $(O)\$(@B).tmp3+$(O)\$(@B).tmp4 $@
  2794. @del $(O)\$(@B).tmp3 $(O)\$(@B).tmp4
  2795. !endif
  2796. @del $(O)\$(@B).txt1
  2797. $(STAMP)
  2798. $(TSBINPLACE_CMD)
  2799. !if $(WIN64)
  2800. $(O)\wsh.wow: $(O)\wsh.inf
  2801. !endif
  2802. !if $(WIN64)
  2803. $(O)\is_wow64.inf: $(_INX)\is_wow64.inx
  2804. copy $(_INX)\$(@B).inx $(O)\$(@B).tmp1
  2805. $(CC) $(PREFLAGS) $(O)\$(@B).tmp1 > $@
  2806. del $(O)\$(@B).tmp1
  2807. $(STAMP)
  2808. $(TSBINPLACE_CMD)
  2809. !endif
  2810. $(O)\ppa.inf: $(_INX)\ppa.inx $(_LNG)\ppa.txt
  2811. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2812. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2813. @del $(O)\$(@B).txt1
  2814. $(STAMP)
  2815. $(TSBINPLACE_CMD)
  2816. $(O)\ppa3.inf: $(_INX)\ppa3.inx $(_LNG)\ppa3.txt
  2817. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2818. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2819. @del $(O)\$(@B).txt1
  2820. $(STAMP)
  2821. $(TSBINPLACE_CMD)
  2822. $(O)\dmreg.inf: $(_INX)\dmreg.inx $(_LNG)\dmreg.txt
  2823. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2824. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2825. @del $(O)\$(@B).txt1
  2826. $(STAMP)
  2827. $(TSBINPLACE_CMD)
  2828. $(O)\dfrg.inf: $(_INX)\dfrg.inx $(_LNG)\dfrg.txt
  2829. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2830. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2831. @del $(O)\$(@B).txt1
  2832. $(STAMP)
  2833. $(TSBINPLACE_CMD)
  2834. $(O)\rsoptcom.inf: $(_INX)\rsoptcom.inx $(_LNG)\rsoptcom.txt
  2835. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2836. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp
  2837. prodfilt $(O)\$(@B).tmp $@ +$(PLATFORM_SWITCH)
  2838. @del $(O)\$(@B).tmp
  2839. @del $(O)\$(@B).txt1
  2840. $(STAMP)
  2841. $(TSBINPLACE_CMD)
  2842. $(O)\umax.inf: $(_INX)\umax.inx $(_LNG)\umax.txt
  2843. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2844. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2845. @del $(O)\$(@B).txt1
  2846. $(STAMP)
  2847. $(TSBINPLACE_CMD)
  2848. $(O)\umaxpp.inf: $(_INX)\umaxpp.inx $(_LNG)\umaxpp.txt
  2849. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2850. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2851. @del $(O)\$(@B).txt1
  2852. $(STAMP)
  2853. $(TSBINPLACE_CMD)
  2854. $(O)\rsoptwks.inf: $(_INX)\rsoptwks.inx $(_LNG)\rsoptwks.txt
  2855. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2856. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2857. @del $(O)\$(@B).txt1
  2858. $(STAMP)
  2859. $(TSBINPLACE_CMD)
  2860. $(O)\msinfo32.inf: $(_INX)\msinfo32.inx \
  2861. !if $(WIN64)
  2862. $(O)\wowlist.inf \
  2863. !endif
  2864. $(_LNG)\msinfo32.txt
  2865. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2866. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  2867. !if $(WIN64)
  2868. copy $@ $(O)\$(@B).tmp1
  2869. wowlist -i $(O)\$(@B).tmp1 -c $(O)\wowlist.inf -as -f w -d $(O)\msinfo32.wow -o $(O)\$(@B).tmp2 -g NOREGSVR
  2870. copy $(O)\$(@B).tmp1+$(O)\$(@B).tmp2 $@
  2871. @del $(O)\$(@B).tmp2 $(O)\$(@B).tmp1
  2872. !endif
  2873. @del $(O)\$(@B).txt1
  2874. $(STAMP)
  2875. $(TSBINPLACE_CMD)
  2876. !if $(WIN64)
  2877. $(O)\msinfo32.wow: $(O)\msinfo32.inf
  2878. !endif
  2879. $(O)\defltp.inf: $(_INX)\defltp.inx $(_LNG)\defltp.txt
  2880. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2881. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2882. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2883. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2884. @del $(O)\$(@B).tmp1
  2885. @del $(O)\$(@B).tmp2
  2886. @del $(O)\$(@B).txt1
  2887. $(STAMP)
  2888. $(TSBINPLACE_CMD)
  2889. $(O)\dpup.inf: $(_INX)\dpup.inx $(_LNG)\dpup.txt
  2890. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2891. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2892. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2893. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2894. @del $(O)\$(@B).tmp1
  2895. @del $(O)\$(@B).tmp2
  2896. @del $(O)\$(@B).txt1
  2897. $(STAMP)
  2898. $(TSBINPLACE_CMD)
  2899. $(O)\defltwk.inf: $(_INX)\defltwk.inx $(_LNG)\defltwk.txt
  2900. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2901. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2902. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2903. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  2904. unitext $(UNITEXT_OPT) $(O)\layout.inf $(O)\layout.u.inf
  2905. escpeinf C $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  2906. @del $(O)\layout.u.inf
  2907. @del $(O)\$(@B).tmp1
  2908. @del $(O)\$(@B).tmp2
  2909. @del $(O)\$(@B).tmp3
  2910. @del $(O)\$(@B).txt1
  2911. $(STAMP)
  2912. $(TSBINPLACE_CMD)
  2913. $(_COVINF)\defltwk.inf: $(_INX)\defltwk.inx $(_LNG)\defltwk.txt $(_COVINF)\layout.inf
  2914. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2915. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2916. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2917. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  2918. unitext $(UNITEXT_OPT) $(_COVINF)\layout.inf $(O)\layout.u.inf
  2919. escpeinf C $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  2920. @del $(O)\layout.u.inf
  2921. @del $(O)\$(@B).tmp1
  2922. @del $(O)\$(@B).tmp2
  2923. @del $(O)\$(@B).tmp3
  2924. @del $(O)\$(@B).txt1
  2925. $(STAMP)
  2926. $(COVER_TSBINPLACE_CMD)
  2927. $(O)\defltsv.inf: $(_INX)\defltsv.inx $(_LNG)\defltsv.txt $(O)\layout.inf
  2928. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2929. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2930. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2931. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  2932. unitext $(UNITEXT_OPT) $(O)\layout.inf $(O)\layout.u.inf
  2933. escpeinf C $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  2934. @del $(O)\layout.u.inf
  2935. @del $(O)\$(@B).tmp1
  2936. @del $(O)\$(@B).tmp2
  2937. @del $(O)\$(@B).tmp3
  2938. @del $(O)\$(@B).txt1
  2939. $(STAMP)
  2940. $(TSBINPLACE_CMD)
  2941. $(_COVINF)\defltsv.inf: $(_INX)\defltsv.inx $(_LNG)\defltsv.txt $(_COVINF)\layout.inf
  2942. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2943. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2944. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2945. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  2946. unitext $(UNITEXT_OPT) $(_COVINF)\layout.inf $(O)\layout.u.inf
  2947. escpeinf C $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  2948. @del $(O)\layout.u.inf
  2949. @del $(O)\$(@B).tmp1
  2950. @del $(O)\$(@B).tmp2
  2951. @del $(O)\$(@B).tmp3
  2952. @del $(O)\$(@B).txt1
  2953. $(STAMP)
  2954. $(COVER_TSBINPLACE_CMD)
  2955. $(O)\defltdc.inf: $(_INX)\defltdc.inx $(_LNG)\defltdc.txt
  2956. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2957. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2958. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2959. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2960. @del $(O)\$(@B).tmp1
  2961. @del $(O)\$(@B).tmp2
  2962. @del $(O)\$(@B).txt1
  2963. $(STAMP)
  2964. $(TSBINPLACE_CMD)
  2965. $(O)\compatws.inf: $(_INX)\compatws.inx $(_LNG)\compatws.txt
  2966. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2967. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2968. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2969. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2970. @del $(O)\$(@B).tmp1
  2971. @del $(O)\$(@B).tmp2
  2972. @del $(O)\$(@B).txt1
  2973. $(STAMP)
  2974. $(TSBINPLACE_CMD)
  2975. $(O)\dcup.inf: $(_INX)\dcup.inx $(_LNG)\dcup.txt
  2976. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2977. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2978. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2979. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2980. @del $(O)\$(@B).tmp1
  2981. @del $(O)\$(@B).tmp2
  2982. @del $(O)\$(@B).txt1
  2983. $(STAMP)
  2984. $(TSBINPLACE_CMD)
  2985. $(O)\dcfirst.inf: $(_INX)\dcfirst.inx $(_LNG)\dcfirst.txt
  2986. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2987. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2988. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2989. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  2990. @del $(O)\$(@B).tmp1
  2991. @del $(O)\$(@B).tmp2
  2992. @del $(O)\$(@B).txt1
  2993. $(STAMP)
  2994. $(TSBINPLACE_CMD)
  2995. $(O)\rootsec.inf: $(_INX)\rootsec.inx $(_LNG)\rootsec.txt
  2996. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  2997. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  2998. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  2999. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3000. @del $(O)\$(@B).tmp1
  3001. @del $(O)\$(@B).tmp2
  3002. @del $(O)\$(@B).txt1
  3003. $(STAMP)
  3004. $(TSBINPLACE_CMD)
  3005. $(O)\securews.inf: $(_INX)\securews.inx $(_LNG)\securews.txt
  3006. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3007. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3008. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3009. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3010. @del $(O)\$(@B).tmp1
  3011. @del $(O)\$(@B).tmp2
  3012. @del $(O)\$(@B).txt1
  3013. $(STAMP)
  3014. $(TSBINPLACE_CMD)
  3015. $(O)\securedc.inf: $(_INX)\securedc.inx $(_LNG)\securedc.txt
  3016. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3017. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3018. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3019. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3020. @del $(O)\$(@B).tmp1
  3021. @del $(O)\$(@B).tmp2
  3022. @del $(O)\$(@B).txt1
  3023. $(STAMP)
  3024. $(TSBINPLACE_CMD)
  3025. $(O)\hisecws.inf: $(_INX)\hisecws.inx $(_LNG)\hisecws.txt
  3026. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3027. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3028. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3029. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3030. @del $(O)\$(@B).tmp1
  3031. @del $(O)\$(@B).tmp2
  3032. @del $(O)\$(@B).txt1
  3033. $(STAMP)
  3034. $(TSBINPLACE_CMD)
  3035. $(O)\hisecdc.inf: $(_INX)\hisecdc.inx $(_LNG)\hisecdc.txt
  3036. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3037. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3038. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3039. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3040. @del $(O)\$(@B).tmp1
  3041. @del $(O)\$(@B).tmp2
  3042. @del $(O)\$(@B).txt1
  3043. $(STAMP)
  3044. $(TSBINPLACE_CMD)
  3045. $(O)\secrecs.inf: $(_INX)\secrecs.inx $(_LNG)\secrecs.txt
  3046. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3047. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3048. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3049. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3050. @del $(O)\$(@B).tmp1
  3051. @del $(O)\$(@B).tmp2
  3052. @del $(O)\$(@B).txt1
  3053. $(STAMP)
  3054. $(TSBINPLACE_CMD)
  3055. $(O)\sceregvl.inf: $(_INX)\sceregvl.inx $(_LNG)\sceregvl.txt
  3056. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3057. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3058. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3059. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3060. @del $(O)\$(@B).tmp1
  3061. @del $(O)\$(@B).tmp2
  3062. @del $(O)\$(@B).txt1
  3063. $(STAMP)
  3064. $(TSBINPLACE_CMD)
  3065. $(O)\dcup5.inf: $(_INX)\dcup5.inx $(_LNG)\dcup5.txt
  3066. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3067. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3068. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3069. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3070. @del $(O)\$(@B).tmp1
  3071. @del $(O)\$(@B).tmp2
  3072. @del $(O)\$(@B).txt1
  3073. $(STAMP)
  3074. $(TSBINPLACE_CMD)
  3075. $(O)\dwup.inf: $(_INX)\dwup.inx $(_LNG)\dwup.txt $(O)\layout.inf
  3076. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3077. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3078. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3079. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  3080. unitext $(UNITEXT_OPT) $(O)\layout.inf $(O)\layout.u.inf
  3081. escpeinf U $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  3082. @del $(O)\layout.u.inf
  3083. @del $(O)\$(@B).tmp1
  3084. @del $(O)\$(@B).tmp2
  3085. @del $(O)\$(@B).tmp3
  3086. @del $(O)\$(@B).txt1
  3087. $(STAMP)
  3088. $(TSBINPLACE_CMD)
  3089. $(_COVINF)\dwup.inf: $(_INX)\dwup.inx $(_LNG)\dwup.txt $(_COVINF)\layout.inf
  3090. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3091. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3092. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3093. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  3094. unitext $(UNITEXT_OPT) $(_COVINF)\layout.inf $(O)\layout.u.inf
  3095. escpeinf U $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  3096. @del $(O)\layout.u.inf
  3097. @del $(O)\$(@B).tmp1
  3098. @del $(O)\$(@B).tmp2
  3099. @del $(O)\$(@B).tmp3
  3100. @del $(O)\$(@B).txt1
  3101. $(STAMP)
  3102. $(COVER_TSBINPLACE_CMD)
  3103. $(O)\dsup.inf: $(_INX)\dsup.inx $(_LNG)\dsup.txt $(O)\layout.inf
  3104. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3105. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3106. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3107. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  3108. unitext $(UNITEXT_OPT) $(O)\layout.inf $(O)\layout.u.inf
  3109. escpeinf U $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  3110. @del $(O)\layout.u.inf
  3111. @del $(O)\$(@B).tmp1
  3112. @del $(O)\$(@B).tmp2
  3113. @del $(O)\$(@B).tmp3
  3114. @del $(O)\$(@B).txt1
  3115. $(STAMP)
  3116. $(TSBINPLACE_CMD)
  3117. $(_COVINF)\dsup.inf: $(_INX)\dsup.inx $(_LNG)\dsup.txt $(_COVINF)\layout.inf
  3118. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3119. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3120. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3121. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  3122. unitext $(UNITEXT_OPT) $(_COVINF)\layout.inf $(O)\layout.u.inf
  3123. escpeinf U $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  3124. @del $(O)\layout.u.inf
  3125. @del $(O)\$(@B).tmp1
  3126. @del $(O)\$(@B).tmp2
  3127. @del $(O)\$(@B).tmp3
  3128. @del $(O)\$(@B).txt1
  3129. $(STAMP)
  3130. $(COVER_TSBINPLACE_CMD)
  3131. $(O)\dsupt.inf: $(_INX)\dsupt.inx $(_LNG)\dsupt.txt $(O)\layout.inf
  3132. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3133. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3134. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3135. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  3136. unitext $(UNITEXT_OPT) $(O)\layout.inf $(O)\layout.u.inf
  3137. escpeinf U $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  3138. @del $(O)\layout.u.inf
  3139. @del $(O)\$(@B).tmp1
  3140. @del $(O)\$(@B).tmp2
  3141. @del $(O)\$(@B).tmp3
  3142. @del $(O)\$(@B).txt1
  3143. $(STAMP)
  3144. $(TSBINPLACE_CMD)
  3145. $(_COVINF)\dsupt.inf: $(_INX)\dsupt.inx $(_LNG)\dsupt.txt $(_COVINF)\layout.inf
  3146. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3147. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3148. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3149. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  3150. unitext $(UNITEXT_OPT) $(_COVINF)\layout.inf $(O)\layout.u.inf
  3151. escpeinf U $(ANSI_CODEPAGE) $(O)\$(@B).tmp3 $@ $(O)\layout.u.inf
  3152. @del $(O)\layout.u.inf
  3153. @del $(O)\$(@B).tmp1
  3154. @del $(O)\$(@B).tmp2
  3155. @del $(O)\$(@B).tmp3
  3156. @del $(O)\$(@B).txt1
  3157. $(STAMP)
  3158. $(COVER_TSBINPLACE_CMD)
  3159. $(O)\syscomp.inf: $(_INX)\syscomp.inx $(_LNG)\syscomp.txt
  3160. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3161. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3162. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3163. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3164. @del $(O)\$(@B).tmp1
  3165. @del $(O)\$(@B).tmp2
  3166. @del $(O)\$(@B).txt1
  3167. $(STAMP)
  3168. $(TSBINPLACE_CMD)
  3169. $(O)\ocmri.inf: $(_INX)\ocmri.inx $(_LNG)\reminst.txt
  3170. $(CC) $(PREFLAGS) $(_LNG)\reminst.txt > reminst.txt1
  3171. copy $(_INX)\$(@B).inx+reminst.txt1 $(O)\$(@B).tmp1
  3172. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3173. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3174. @del $(O)\$(@B).tmp1
  3175. @del $(O)\$(@B).tmp2
  3176. @del reminst.txt1
  3177. $(STAMP)
  3178. $(TSBINPLACE_CMD)
  3179. $(O)\reminst.inf: $(_INX)\reminst.inx $(_LNG)\reminst.txt $(_INX)\ocmri.inx
  3180. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3181. copy $(_INX)\ocmri.inx+$(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3182. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3183. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3184. @del $(O)\$(@B).tmp1
  3185. @del $(O)\$(@B).tmp2
  3186. @del $(O)\$(@B).txt1
  3187. $(STAMP)
  3188. $(TSBINPLACE_CMD)
  3189. $(O)\ristndrd.sif: $(_INX)\ristndrd.inx $(_LNG)\ristndrd.txt
  3190. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3191. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3192. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3193. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +R
  3194. prodfilt $(O)\$(@B).tmp3 $@ +$(PLATFORM_SWITCH)
  3195. @del $(O)\$(@B).tmp1
  3196. @del $(O)\$(@B).tmp2
  3197. @del $(O)\$(@B).tmp3
  3198. @del $(O)\$(@B).txt1
  3199. $(TSBINPLACE_CMD)
  3200. $(O)\rinorprt.sif: $(_INX)\ristndrd.inx $(_LNG)\ristndrd.txt
  3201. $(CC) $(PREFLAGS) $(_LNG)\ristndrd.txt > $(O)\$(@B).txt1
  3202. copy $(_INX)\ristndrd.inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3203. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3204. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +N
  3205. prodfilt $(O)\$(@B).tmp3 $@ +$(PLATFORM_SWITCH)
  3206. @del $(O)\$(@B).tmp1
  3207. @del $(O)\$(@B).tmp2
  3208. @del $(O)\$(@B).tmp3
  3209. @del $(O)\$(@B).txt1
  3210. $(TSBINPLACE_CMD)
  3211. $(O)\riprep.inf: $(_INX)\riprep.inx $(_LNG)\riprep.txt
  3212. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(@B).txt1
  3213. copy $(_INX)\$(@B).inx+$(@B).txt1 $(@B).tmp1
  3214. prodfilt $(@B).tmp1 $(@B).tmp2 +$(PRODSWITCH)
  3215. prodfilt $(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3216. @del $(@B).tmp1
  3217. @del $(@B).tmp2
  3218. @del $(@B).txt1
  3219. $(TSBINPLACE_CMD)
  3220. $(O)\minioc.inf: $(_INX)\minioc.inx $(_LNG)\minioc.txt
  3221. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3222. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3223. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3224. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3225. @del $(O)\$(@B).tmp1
  3226. @del $(O)\$(@B).tmp2
  3227. @del $(O)\$(@B).txt1
  3228. $(STAMP)
  3229. $(TSBINPLACE_CMD)
  3230. $(O)\hfltpci.inf: $(_INX)\hfltpci.inx $(_LNG)\hfltpci.txt
  3231. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3232. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  3233. @del $(O)\$(@B).txt1
  3234. $(STAMP)
  3235. $(TSBINPLACE_CMD)
  3236. $(O)\msmscsi.inf: $(_INX)\msmscsi.inx $(_LNG)\msmscsi.txt
  3237. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3238. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  3239. @del $(O)\$(@B).txt1
  3240. $(STAMP)
  3241. $(TSBINPLACE_CMD)
  3242. $(O)\msmusb.inf: $(_INX)\msmusb.inx $(_LNG)\msmusb.txt
  3243. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3244. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  3245. @del $(O)\$(@B).txt1
  3246. $(STAMP)
  3247. $(TSBINPLACE_CMD)
  3248. $(O)\biosinfo.inf: $(_INX)\biosinfo.inx $(_LNG)\biosinfo.txt
  3249. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3250. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  3251. @del $(O)\$(@B).txt1
  3252. $(STAMP)
  3253. $(TSBINPLACE_CMD)
  3254. $(O)\unknown.inf: $(_INX)\unknown.inx $(_LNG)\unknown.txt
  3255. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3256. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  3257. @del $(O)\$(@B).txt1
  3258. $(STAMP)
  3259. $(TSBINPLACE_CMD)
  3260. $(O)\tabletpc.inf: $(_INX)\tablet.inx $(_LNG)\tablet.txt
  3261. $(CC) $(PREFLAGS) $(_LNG)\tablet.txt > $(@B).txt1
  3262. $(CC) $(PREFLAGS) $(_INX)\tablet.inx > $(O)\$(@B).inx1
  3263. copy $(O)\$(@B).inx1+$(@B).txt1 $(@B).tmp1
  3264. prodfilt $(@B).tmp1 $(@B).tmp2 +$(PLATFORM_SWITCH)
  3265. prodfilt $(@B).tmp2 $@ +$(PRODSWITCH)
  3266. @del $(@B).tmp1
  3267. @del $(@B).tmp2
  3268. @del $(@B).txt1
  3269. @del $(O)\$(@B).inx1
  3270. $(TSBINPLACE_CMD)
  3271. $(O)\tabletmui.inf: $(_INX)\tabletmui.inx $(_LNG)\tabletmui.txt
  3272. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(@B).txt1
  3273. $(CC) $(PREFLAGS) $(_INX)\$(@B).inx > $(O)\$(@B).inx1
  3274. copy $(O)\$(@B).inx1+$(@B).txt1 $(@B).tmp1
  3275. prodfilt $(@B).tmp1 $(@B).tmp2 +$(PLATFORM_SWITCH)
  3276. prodfilt $(@B).tmp2 $@ +$(PRODSWITCH)
  3277. @del $(@B).tmp1
  3278. @del $(@B).tmp2
  3279. @del $(@B).txt1
  3280. @del $(O)\$(@B).inx1
  3281. $(STAMP)
  3282. $(TSBINPLACE_CMD)
  3283. $(O)\hal.inf: $(_INX)\hal.inx $(_LNG)\hal.txt
  3284. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3285. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp
  3286. prodfilt $(O)\$(@B).tmp $(O)\$(@B).tmp1 +$(PLATFORM_SWITCH)
  3287. prodfilt $(O)\$(@B).tmp1 $@ +$(PRODSWITCH)
  3288. @del $(O)\$(@B).tmp
  3289. @del $(O)\$(@B).tmp1
  3290. @del $(O)\$(@B).txt1
  3291. $(STAMP)
  3292. $(TSBINPLACE_CMD)
  3293. $(O)\exclude.inf: $(_INX)\exclude.inx $(_LNG)\exclude.txt
  3294. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3295. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $@
  3296. @del $(O)\$(@B).txt1
  3297. $(STAMP)
  3298. $(TSBINPLACE_CMD)
  3299. $(O)\wowlist.inf: $(_INX)\wowlist.inx $(_LNG)\wowlist.txt
  3300. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3301. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(@)
  3302. @del $(O)\$(@B).txt1
  3303. !IF "$(PRODSWITCH)"=="w" || "$(PRODSWITCH)"=="W"
  3304. $(TSBINPLACE_CMD)
  3305. !ENDIF
  3306. $(O)\wowfrege.inf: $(_INX)\wowfrege.inx $(_LNG)\wowfrege.txt
  3307. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3308. echo [EarlyOleControlDlls] >$(O)\wowfrege.tmp1
  3309. copy $(O)\wowfrege.tmp1+$(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(@)
  3310. @del $(O)\$(@B).txt1
  3311. # $(TSBINPLACE_CMD)
  3312. $(O)\wowfrego.inf: $(_INX)\wowfrego.inx $(_LNG)\wowfrego.txt
  3313. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3314. echo [OleControlDlls] >$(O)\wowfrego.tmp1
  3315. copy $(O)\wowfrego.tmp1+$(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(@)
  3316. @del $(O)\$(@B).txt1
  3317. # $(TSBINPLACE_CMD)
  3318. $(O)\wowfregc.inf: $(_INX)\wowfregc.inx $(_LNG)\wowfregc.txt
  3319. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3320. echo [CryptoDlls] >$(O)\wowfregc.tmp1
  3321. copy $(O)\wowfregc.tmp1+$(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(@)
  3322. @del $(O)\$(@B).txt1
  3323. # $(TSBINPLACE_CMD)
  3324. $(O)\wowfile.inf: $(_INX)\wowfile.inx $(_LNG)\wowfile.txt \
  3325. $(O)\accessor.wow $(O)\communic.wow $(O)\games.wow \
  3326. $(O)\mmopt.wow $(O)\multimed.wow $(O)\optional.wow \
  3327. $(O)\pinball.wow $(O)\wordpad.wow $(O)\mdac.wow \
  3328. $(O)\msinfo32.wow $(O)\ie.wow $(O)\msoe50.wow \
  3329. $(O)\mstask.wow $(O)\wab50.wow $(O)\syssetup.wow $(O)\wsh.wow \
  3330. $(O)\apcompat.wow $(O)\intl.wow $(O)\wbemoc.wow \
  3331. $(O)\vgx.wow $(O)\icwnt5.wow
  3332. !IF $(IA64)
  3333. echo [SourceDisksFiles.ia64] >$(O)\wowfile.tmp1
  3334. !ELSE
  3335. echo [SourceDisksFiles.amd64] >$(O)\wowfile.tmp1
  3336. !ENDIF
  3337. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3338. for /f "tokens=*" %%i in ($(O)\$(@B).txt1) do echo w%%i >>$(O)\$(@B).txt2
  3339. for /f "tokens=*" %%i in ($(_INX)\wowfile.inx) do echo w%%i >>$(O)\wowfile.tmp2
  3340. copy $(O)\wowfile.tmp1+$(O)\wowfile.tmp2+$(O)\$(@B).txt2 $(O)\$(@B).tmp
  3341. prodfilt $(O)\$(@B).tmp $(O)\$(@B).tmp1 +$(PLATFORM_SWITCH)
  3342. del $(O)\$(@B).tmp
  3343. for %%i in ($(O)\accessor.wow $(O)\communic.wow $(O)\games.wow \
  3344. $(O)\mmopt.wow $(O)\multimed.wow $(O)\optional.wow \
  3345. $(O)\pinball.wow $(O)\wordpad.wow $(O)\mdac.wow \
  3346. $(O)\msinfo32.wow $(O)\ie.wow $(O)\msoe50.wow \
  3347. $(O)\mstask.wow $(O)\wab50.wow $(O)\syssetup.wow $(O)\wsh.wow \
  3348. $(O)\apcompat.wow $(O)\intl.wow $(O)\wbemoc.wow $(O)\vgx.wow $(O)\icwnt5.wow) \
  3349. do type %%i >>$(O)\$(@B).tmp
  3350. copy $(O)\$(@B).tmp1+$(O)\$(@B).tmp $(O)\$(@B).tmp3
  3351. perl $(_INX)\wowfltr.pl /file=$(O)\$(@B).tmp3 > $@
  3352. @del $(O)\$(@B).tmp $(O)\wowfile.tmp1 $(O)\wowfile.tmp2 $(O)\$(@B).tmp1 $(O)\$(@B).txt1 $(O)\$(@B).tmp3 $(O)\$(@B).txt1
  3353. # $(TSBINPLACE_CMD)
  3354. $(O)\wowfiled.inf: $(_INX)\wowfile.inx $(_LNG)\wowfile.txt $(_INX)\header2 \
  3355. $(O)\accessor.wow $(O)\communic.wow $(O)\games.wow \
  3356. $(O)\mmopt.wow $(O)\multimed.wow $(O)\optional.wow \
  3357. $(O)\pinball.wow $(O)\wordpad.wow $(O)\mdac.wow \
  3358. $(O)\msinfo32.wow $(O)\ie.wow $(O)\msoe50.wow \
  3359. $(O)\mstask.wow $(O)\wab50.wow $(O)\syssetup.wow $(O)\wsh.wow \
  3360. $(O)\apcompat.wow $(O)\intl.wow $(O)\wbemoc.wow \
  3361. $(O)\vgx.wow $(O)\icwnt5.wow
  3362. $(CC) $(PREFLAGS) $(_LNG)\wowfile.txt > $(O)\wowfile.txt1
  3363. for /f "tokens=*" %%i in ($(O)\wowfile.txt1) do echo w%%i >>$(O)\wowfile.txt2
  3364. for /f "tokens=*" %%i in ($(_INX)\wowfile.inx) do echo w%%i >>$(O)\wowfile.tmp1
  3365. copy $(_INX)\header2+$(O)\wowfile.tmp1+$(O)\wowfile.txt2 $(O)\$(@B).tmp
  3366. prodfilt $(O)\$(@B).tmp $(O)\$(@B).tmp1 +$(PLATFORM_SWITCH)
  3367. del $(O)\$(@B).tmp
  3368. for %%i in ($(O)\accessor.wow $(O)\communic.wow $(O)\games.wow \
  3369. $(O)\mmopt.wow $(O)\multimed.wow $(O)\optional.wow \
  3370. $(O)\pinball.wow $(O)\wordpad.wow $(O)\mdac.wow \
  3371. $(O)\msinfo32.wow $(O)\ie.wow $(O)\msoe50.wow \
  3372. $(O)\mstask.wow $(O)\wab50.wow $(O)\syssetup.wow $(O)\wsh.wow \
  3373. $(O)\apcompat.wow $(O)\intl.wow $(O)\wbemoc.wow $(O)\vgx.wow $(O)\icwnt5.wow) \
  3374. do type %%i >>$(O)\$(@B).tmp
  3375. copy $(O)\$(@B).tmp1+$(O)\$(@B).tmp $(O)\$(@B).tmp2
  3376. perl $(_INX)\wowfltr.pl /file=$(O)\$(@B).tmp2 > $@
  3377. @del $(O)\$(@B).tmp $(O)\wowfile.tmp1 $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 $(O)\wowfile.txt1 $(O)\wowfile.txt2
  3378. # $(TSBINPLACE_CMD)
  3379. $(O)\wowexcp.txt: $(_INX)\wowfile.inx $(O)\accessor.wow $(O)\communic.wow \
  3380. $(O)\games.wow $(O)\mmopt.wow $(O)\multimed.wow \
  3381. $(O)\optional.wow $(O)\pinball.wow $(O)\wordpad.wow \
  3382. $(O)\mdac.wow $(O)\msinfo32.wow $(O)\ie.wow $(O)\msoe50.wow \
  3383. $(O)\mstask.wow $(O)\wab50.wow $(O)\syssetup.wow $(O)\wsh.wow \
  3384. $(O)\apcompat.wow $(O)\intl.wow $(O)\intlinfa.wow $(O)\wbemoc.wow $(O)\vgx.wow \
  3385. $(O)\icwnt5.wow
  3386. if exist $(O)\$(@B).tmp del $(O)\$(@B).tmp
  3387. for %%i in ($(O)\accessor.wow $(O)\communic.wow $(O)\games.wow \
  3388. $(O)\mmopt.wow $(O)\multimed.wow $(O)\optional.wow \
  3389. $(O)\pinball.wow $(O)\wordpad.wow $(O)\mdac.wow \
  3390. $(O)\msinfo32.wow $(O)\ie.wow $(O)\msoe50.wow \
  3391. $(O)\mstask.wow $(O)\wab50.wow $(O)\syssetup.wow $(O)\wsh.wow \
  3392. $(O)\apcompat.wow $(O)\intl.wow $(O)\intlinfa.wow $(O)\wbemoc.wow $(O)\vgx.wow \
  3393. $(O)\icwnt5.wow) \
  3394. do $(STRIPCHAR) %%i $(O)\$(@B).tmp
  3395. copy /b $(_INX)\wowfile.inx+$(O)\$(@B).tmp $@
  3396. @del $(O)\$(@B).tmp
  3397. $(TSBINPLACE_CMD)
  3398. #
  3399. # Special infs (and the test certificate, which we deal with along with INFs in
  3400. # order to keep all the special magic we do for internal test builds in one
  3401. # place)...
  3402. #
  3403. # Real-signed txtsetup.sif
  3404. #
  3405. $(_RSINF)\txtsetup.sif: $(O)\txtsetup.inx $(_LNG)\txtsetup.txt $(_LNG)\dskspace.txt $(_RSINF)\layout.inf
  3406. $(CC) $(PREFLAGS) $(_LNG)\txtsetup.txt > $(O)\txtsetup.txt1
  3407. $(CC) $(PREFLAGS) $(_LNG)\dskspace.txt > $(O)\dskspace.txt1
  3408. copy $(O)\$(@B).inx+$(O)\txtsetup.txt1+$(O)\dskspace.txt1 $(O)\txtsetup.tmp1
  3409. prodfilt -s $(O)\txtsetup.tmp1 $(O)\txtsetup.tmp2 +$(PLATFORM_SWITCH)
  3410. prodfilt -s $(O)\txtsetup.tmp2 $(O)\txtsetup.tmp1 +$(PRODSWITCH)
  3411. copy $(_RSINF)\layout.inf+$(O)\txtsetup.tmp1 $(_RSINF)\txtsetup.sif
  3412. inftest $(_RSINF)\txtsetup.sif /B /$(PLATFORM_SWITCH)
  3413. @del $(O)\txtsetup.tmp1 $(O)\txtsetup.tmp2 $(O)\txtsetup.txt1 $(O)\dskspace.txt1
  3414. $(RSBINPLACE_CMD)
  3415. #
  3416. # Coverage Real-signed txtsetup.sif
  3417. #
  3418. $(_RSCOVINF)\txtsetup.sif: $(O)\txtsetup.inx $(_LNG)\txtsetup.txt $(_LNG)\dskspace.txt $(_RSCOVINF)\layout.inf $(_INX)\$(@B).mcv
  3419. $(CC) $(PREFLAGS) $(_LNG)\txtsetup.txt > $(O)\txtsetup.txt1
  3420. $(CC) $(PREFLAGS) $(_LNG)\dskspace.txt > $(O)\dskspace.txt1
  3421. copy $(O)\$(@B).inx+$(O)\txtsetup.txt1+$(O)\dskspace.txt1 $(O)\txtsetup.tmp1
  3422. prodfilt -s $(O)\txtsetup.tmp1 $(O)\txtsetup.tmp2 +$(PLATFORM_SWITCH)
  3423. prodfilt -s $(O)\txtsetup.tmp2 $(O)\txtsetup.tmp1 +$(PRODSWITCH)
  3424. call MergeFiles.cmd $(O)\txtsetup.tmp1 $(_INX)\$(@B).mcv $(O)\txtsetup.tmp2
  3425. copy $(_RSCOVINF)\layout.inf+$(O)\txtsetup.tmp2 $(_RSCOVINF)\txtsetup.sif
  3426. @del $(O)\txtsetup.tmp1 $(O)\txtsetup.tmp2 $(O)\txtsetup.txt1 $(O)\dskspace.txt1
  3427. $(COVER_RSBINPLACE_CMD)
  3428. #
  3429. # Test-signed txtsetup.sif
  3430. #
  3431. $(O)\txtsetup.sif: $(O)\txtsetup.inx $(_LNG)\txtsetup.txt $(_LNG)\dskspace.txt $(O)\layout.inf
  3432. $(CC) $(PREFLAGS) $(_LNG)\txtsetup.txt > $(O)\txtsetup.txt1
  3433. $(CC) $(PREFLAGS) $(_LNG)\dskspace.txt > $(O)\dskspace.txt1
  3434. copy $(O)\$(@B).inx+$(O)\txtsetup.txt1+$(O)\dskspace.txt1 $(O)\txtsetup.tmp1
  3435. prodfilt -s $(O)\txtsetup.tmp1 $(O)\txtsetup.tmp2 +$(PLATFORM_SWITCH)
  3436. prodfilt -s $(O)\txtsetup.tmp2 $(O)\txtsetup.tmp1 +$(PRODSWITCH)
  3437. copy $(O)\layout.inf+$(O)\txtsetup.tmp1 $(O)\txtsetup.sif
  3438. inftest $(O)\txtsetup.sif /B /$(PLATFORM_SWITCH)
  3439. @del $(O)\txtsetup.tmp1 $(O)\txtsetup.tmp2 $(O)\txtsetup.txt1 $(O)\dskspace.txt1
  3440. $(TSBINPLACE_CMD)
  3441. #
  3442. # Coverage Test-signed txtsetup.sif
  3443. #
  3444. $(_COVINF)\txtsetup.sif: $(O)\txtsetup.inx $(_LNG)\txtsetup.txt $(_LNG)\dskspace.txt $(_COVINF)\layout.inf $(_INX)\$(@B).mcv
  3445. $(CC) $(PREFLAGS) $(_LNG)\txtsetup.txt > $(O)\txtsetup.txt1
  3446. $(CC) $(PREFLAGS) $(_LNG)\dskspace.txt > $(O)\dskspace.txt1
  3447. copy $(O)\$(@B).inx+$(O)\txtsetup.txt1+$(O)\dskspace.txt1 $(O)\txtsetup.tmp1
  3448. prodfilt -s $(O)\txtsetup.tmp1 $(O)\txtsetup.tmp2 +$(PLATFORM_SWITCH)
  3449. prodfilt -s $(O)\txtsetup.tmp2 $(O)\txtsetup.tmp1 +$(PRODSWITCH)
  3450. call MergeFiles.cmd $(O)\txtsetup.tmp1 $(_INX)\$(@B).mcv $(O)\txtsetup.tmp2
  3451. copy $(_COVINF)\layout.inf+$(O)\txtsetup.tmp2 $(_COVINF)\txtsetup.sif
  3452. @del $(O)\txtsetup.tmp1 $(O)\txtsetup.tmp2 $(O)\txtsetup.txt1 $(O)\dskspace.txt1
  3453. $(COVER_TSBINPLACE_CMD)
  3454. #
  3455. # Real-signed dosnet.inf
  3456. #
  3457. $(_RSINF)\dosnet.inf: $(O)\dosnet.inx $(_LNG)\dosnet.txt \
  3458. $(_LNG)\dskspace.txt $(_RSINF)\layout.inf \
  3459. !IF $(WIN64)
  3460. $(O)\wowlist.inf $(O)\wowfiled.inf \
  3461. !endif
  3462. $(O)\layout.inx $(O)\layout.txt $(O)\exclude.inf $(O)\spmap.txt
  3463. $(CC) $(PREFLAGS) $(_LNG)\dosnet.txt > $(O)\dosnet.txt1
  3464. $(CC) $(PREFLAGS) $(_LNG)\dskspace.txt > $(O)\dskspace.txt1
  3465. copy $(O)\dosnet.inx+$(O)\dosnet.txt1+$(O)\dskspace.txt1 $(O)\dosnet.tmp1
  3466. prodfilt -s $(O)\dosnet.tmp1 $(O)\dosnet.tmp2 +$(PLATFORM_SWITCH)
  3467. prodfilt -s $(O)\dosnet.tmp2 $(O)\dosnet.tmp1 +$(PRODSWITCH)
  3468. copy $(O)\layout.inx+$(O)\layout.txt $(O)\lydosnet.tmp1
  3469. prodfilt -s $(O)\lydosnet.tmp1 $(O)\lydosnet.tmp2 +$(PRODSWITCH)
  3470. prodfilt -s $(O)\lydosnet.tmp2 $(O)\lydosnet.tmp1 +$(PLATFORM_SWITCH)
  3471. !IF $(WIN64)
  3472. xdosnet $(O)\lydosnet.tmp1 $(O)\dummy 1 $(O)\lydosnet.tmp2 $(TARGET_DIRECTORY:i386=x86) $(O)\foo $(O)\exclude.inf $(O)\bootlist.tmp
  3473. copy $(O)\lydosnet.tmp2+$(O)\bootlist.tmp $(O)\lydosnet.tmp3
  3474. !else
  3475. xdosnet $(O)\lydosnet.tmp1 $(O)\dummy * $(O)\lydosnet.tmp3 $(TARGET_DIRECTORY:i386=x86) $(O)\foo $(O)\exclude.inf
  3476. !endif
  3477. copy $(O)\dosnet.tmp1+$(O)\lydosnet.tmp3 $(_RSINF)\dosnet.inf
  3478. !IF $(WIN64)
  3479. copy $(_RSINF)\dosnet.inf $(O)\dosnet.tmp3
  3480. copy $(O)\layout.inx+$(O)\layout.txt $(O)\dosnet.tmp1
  3481. prodfilt -s $(O)\dosnet.tmp1 $(O)\dosnet.tmp2 +@
  3482. prodfilt -s $(O)\dosnet.tmp2 $(O)\dosnet.tmp1 +i
  3483. wowlist -i $(O)\dosnet.tmp1 -c $(O)\wowlist.inf -o $(O)\dosnet.tmp2 -ac -h $(O)\wowfiled.inf -f w 2>NUL
  3484. xdosnet $(O)\dosnet.tmp2 $(O)\dummy 2 $(O)\dosnet.tmp1 $(TARGET_DIRECTORY:i386=x86)
  3485. copy $(O)\dosnet.tmp3+$(O)\dosnet.tmp1 $(_RSINF)\dosnet.inf
  3486. perl $(_INX)\splayout.pl $@ $@ $(O)\spmap.txt
  3487. @del $(O)\dosnet.tmp3 $(_INF)\dosnet.tmp2
  3488. !ENDIF
  3489. @del $(O)\dosnet.tmp1 $(O)\dosnet.tmp2 $(O)\lydosnet.tmp1 $(O)\lydosnet.tmp2 $(O)\dosnet.txt1 $(O)\dskspace.txt1 $(O)\lydosnet.tmp3 $(O)\bootlist.tmp
  3490. set STAMPINF_VERSION=
  3491. $(STAMP)
  3492. $(RSBINPLACE_CMD)
  3493. #
  3494. # Coverage Real-signed dosnet.inf
  3495. #
  3496. $(_RSCOVINF)\dosnet.inf: $(_RSCOVINF)\dosnet.inx $(_LNG)\dosnet.txt $(_INX)\dosnet.mcv \
  3497. $(_LNG)\dskspace.txt $(_RSCOVINF)\layout.inf \
  3498. $(_COVINF)\layout.inx $(O)\layout.txt $(O)\exclude.inf $(O)\spmap.txt
  3499. $(CC) $(PREFLAGS) $(_LNG)\dosnet.txt > $(_RSCOVINF)\dosnet.txt1
  3500. $(CC) $(PREFLAGS) $(_LNG)\dskspace.txt > $(_RSCOVINF)\dskspace.txt1
  3501. copy $(_RSCOVINF)\dosnet.inx+$(_RSCOVINF)\dosnet.txt1+$(_RSCOVINF)\dskspace.txt1 $(_RSCOVINF)\dosnet.tmp1
  3502. call MergeFiles.cmd $(_RSCOVINF)\dosnet.tmp1 $(_INX)\dosnet.mcv $(_RSCOVINF)\dosnet.tmp2
  3503. copy $(_RSCOVINF)\dosnet.tmp2 $(_RSCOVINF)\dosnet.tmp1
  3504. prodfilt -s $(_RSCOVINF)\dosnet.tmp1 $(_RSCOVINF)\dosnet.tmp2 +$(PLATFORM_SWITCH)
  3505. prodfilt -s $(_RSCOVINF)\dosnet.tmp2 $(_RSCOVINF)\dosnet.tmp1 +$(PRODSWITCH)
  3506. copy $(_COVINF)\layout.inx+$(_INX)\layout.tst+$(O)\layout.txt $(_RSCOVINF)\lydosnet.tmp1
  3507. prodfilt -s $(_RSCOVINF)\lydosnet.tmp1 $(_RSCOVINF)\lydosnet.tmp2 +$(PRODSWITCH)
  3508. prodfilt -s $(_RSCOVINF)\lydosnet.tmp2 $(_RSCOVINF)\lydosnet.tmp1 +$(PLATFORM_SWITCH)
  3509. xdosnet $(_RSCOVINF)\lydosnet.tmp1 $(_RSCOVINF)\dummy * $(_RSCOVINF)\lydosnet.tmp3 $(TARGET_DIRECTORY:i386=x86) $(O)\foo $(O)\exclude.inf
  3510. copy $(_RSCOVINF)\dosnet.tmp1+$(_RSCOVINF)\lydosnet.tmp3 $(_RSCOVINF)\dosnet.inf
  3511. perl $(_INX)\splayout.pl $@ $@ $(O)\spmap.txt
  3512. @del $(_RSCOVINF)\dosnet.tmp1 $(_RSCOVINF)\dosnet.tmp2 $(_RSCOVINF)\lydosnet.tmp1 $(_RSCOVINF)\lydosnet.tmp2 $(_RSCOVINF)\dosnet.txt1 $(_RSCOVINF)\dskspace.txt1 $(_RSCOVINF)\lydosnet.tmp3 $(_RSCOVINF)\bootlist.tmp
  3513. set STAMPINF_VERSION=
  3514. $(STAMP)
  3515. $(COVER_RSBINPLACE_CMD)
  3516. #
  3517. # Test-signed dosnet.inf
  3518. # Note we need to create a native layout.inf for xdosnet.exe with no wow files
  3519. # present
  3520. #
  3521. $(O)\dosnet.inf: $(O)\dosnet.inx $(_LNG)\dosnet.txt \
  3522. $(_LNG)\dskspace.txt $(O)\layout.inf \
  3523. !IF $(WIN64)
  3524. $(O)\wowlist.inf $(O)\wowfiled.inf \
  3525. !endif
  3526. $(O)\layout.inx $(O)\layout.txt $(O)\exclude.inf $(O)\spmap.txt
  3527. $(CC) $(PREFLAGS) $(_LNG)\dosnet.txt > $(O)\dosnet.txt1
  3528. $(CC) $(PREFLAGS) $(_LNG)\dskspace.txt > $(O)\dskspace.txt1
  3529. copy $(O)\dosnet.inx+$(O)\dosnet.txt1+$(O)\dskspace.txt1 $(O)\dosnet.tmp1
  3530. prodfilt -s $(O)\dosnet.tmp1 $(O)\dosnet.tmp2 +$(PLATFORM_SWITCH)
  3531. prodfilt -s $(O)\dosnet.tmp2 $(O)\dosnet.tmp1 +$(PRODSWITCH)
  3532. copy $(O)\layout.inx+$(_INX)\layout.tst+$(O)\layout.txt $(O)\lydosnet.tmp1
  3533. prodfilt -s $(O)\lydosnet.tmp1 $(O)\lydosnet.tmp2 +$(PRODSWITCH)
  3534. prodfilt -s $(O)\lydosnet.tmp2 $(O)\lydosnet.tmp1 +$(PLATFORM_SWITCH)
  3535. !IF $(WIN64)
  3536. xdosnet $(O)\lydosnet.tmp1 $(O)\dummy 1 $(O)\lydosnet.tmp2 $(TARGET_DIRECTORY:i386=x86) $(O)\foo $(O)\exclude.inf $(O)\bootlist.tmp
  3537. copy $(O)\lydosnet.tmp2+$(O)\bootlist.tmp $(O)\lydosnet.tmp3
  3538. !else
  3539. xdosnet $(O)\lydosnet.tmp1 $(O)\dummy * $(O)\lydosnet.tmp3 $(TARGET_DIRECTORY:i386=x86) $(O)\foo $(O)\exclude.inf
  3540. !endif
  3541. copy $(O)\dosnet.tmp1+$(O)\lydosnet.tmp3 $(O)\dosnet.inf
  3542. !IF $(WIN64)
  3543. copy $(_INF)\dosnet.inf $(O)\dosnet.tmp3
  3544. copy $(O)\layout.inx+$(O)\layout.txt $(O)\dosnet.tmp1
  3545. prodfilt -s $(O)\dosnet.tmp1 $(O)\dosnet.tmp2 +@
  3546. prodfilt -s $(O)\dosnet.tmp2 $(O)\dosnet.tmp1 +i
  3547. wowlist -i $(O)\dosnet.tmp1 -c $(O)\wowlist.inf -o $(O)\dosnet.tmp2 -ac -h $(O)\wowfiled.inf -f w 2>NUL
  3548. xdosnet $(O)\dosnet.tmp2 $(O)\dummy 2 $(O)\dosnet.tmp1 $(TARGET_DIRECTORY:i386=x86)
  3549. copy $(O)\dosnet.tmp3+$(O)\dosnet.tmp1 $(_INF)\dosnet.inf
  3550. perl $(_INX)\splayout.pl $@ $@ $(O)\spmap.txt
  3551. @del $(O)\dosnet.tmp3 $(_INF)\dosnet.tmp2
  3552. !ENDIF
  3553. @del $(O)\dosnet.tmp1 $(O)\dosnet.tmp2 $(O)\lydosnet.tmp1 $(O)\lydosnet.tmp2 $(O)\dosnet.txt1 $(O)\dskspace.txt1 $(O)\lydosnet.tmp3 $(O)\bootlist.tmp
  3554. set STAMPINF_VERSION=
  3555. $(STAMP)
  3556. $(TSBINPLACE_CMD)
  3557. #
  3558. # Coverage Test-signed dosnet.inf
  3559. # Note we need to create a native layout.inf for xdosnet.exe with no wow files
  3560. # present
  3561. #
  3562. $(_COVINF)\dosnet.inf: $(_COVINF)\dosnet.inx $(_LNG)\dosnet.txt $(_INX)\dosnet.mcv \
  3563. $(_LNG)\dskspace.txt $(_COVINF)\layout.inf \
  3564. $(_COVINF)\layout.inx $(O)\layout.txt $(O)\exclude.inf
  3565. $(CC) $(PREFLAGS) $(_LNG)\dosnet.txt > $(_COVINF)\dosnet.txt1
  3566. $(CC) $(PREFLAGS) $(_LNG)\dskspace.txt > $(_COVINF)\dskspace.txt1
  3567. copy $(_COVINF)\dosnet.inx+$(_COVINF)\dosnet.txt1+$(_COVINF)\dskspace.txt1 $(_COVINF)\dosnet.tmp1
  3568. call MergeFiles.cmd $(_COVINF)\dosnet.tmp1 $(_INX)\dosnet.mcv $(_COVINF)\dosnet.tmp2
  3569. copy $(_COVINF)\dosnet.tmp2 $(_COVINF)\dosnet.tmp1
  3570. prodfilt -s $(_COVINF)\dosnet.tmp1 $(_COVINF)\dosnet.tmp2 +$(PLATFORM_SWITCH)
  3571. prodfilt -s $(_COVINF)\dosnet.tmp2 $(_COVINF)\dosnet.tmp1 +$(PRODSWITCH)
  3572. copy $(_COVINF)\layout.inx+$(_INX)\layout.tst+$(O)\layout.txt $(_COVINF)\lydosnet.tmp1
  3573. prodfilt -s $(_COVINF)\lydosnet.tmp1 $(_COVINF)\lydosnet.tmp2 +$(PRODSWITCH)
  3574. prodfilt -s $(_COVINF)\lydosnet.tmp2 $(_COVINF)\lydosnet.tmp1 +$(PLATFORM_SWITCH)
  3575. xdosnet $(_COVINF)\lydosnet.tmp1 $(_COVINF)\dummy * $(_COVINF)\lydosnet.tmp3 $(TARGET_DIRECTORY:i386=x86) $(O)\foo $(O)\exclude.inf
  3576. copy $(_COVINF)\dosnet.tmp1+$(_COVINF)\lydosnet.tmp3 $(_COVINF)\dosnet.inf
  3577. @del $(_COVINF)\dosnet.tmp1 $(_COVINF)\dosnet.tmp2 $(_COVINF)\lydosnet.tmp1 $(_COVINF)\lydosnet.tmp2 $(_COVINF)\dosnet.txt1 $(_COVINF)\dskspace.txt1 $(_COVINF)\lydosnet.tmp3 $(_COVINF)\bootlist.tmp
  3578. set STAMPINF_VERSION=
  3579. $(STAMP)
  3580. $(COVER_TSBINPLACE_CMD)
  3581. $(O)\sfcgen.inf: $(_INX)\sfcgen.inx $(_LNG)\sfcgen.txt
  3582. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3583. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3584. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3585. prodfilt -s $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3586. @del $(O)\$(@B).tmp1
  3587. @del $(O)\$(@B).tmp2
  3588. @del $(O)\$(@B).txt1
  3589. $(STAMP)
  3590. $(TSBINPLACE_CMD)
  3591. $(O)\legacy.inf: $(_INX)\legacy.inf
  3592. copy $(_INX)\legacy.inf $(O)\.
  3593. $(STAMP)
  3594. $(TSBINPLACE_CMD)
  3595. $(O)\certclas.inf: $(_INX)\certclas.inf
  3596. prodfilt $(_INX)\certclas.inf $@ +$(PLATFORM_SWITCH)
  3597. $(STAMP)
  3598. $(TSBINPLACE_CMD)
  3599. $(O)\testroot.cer: $(_INX)\testroot.cer
  3600. copy $(_INX)\testroot.cer $(O)\.
  3601. $(TSBINPLACE_CMD)
  3602. #
  3603. # BEGIN PCHealth preprocessing.
  3604. #
  3605. $(O)\pchmui.inf: $(_INX)\pchmui.inx $(_LNG)\pchmui.txt
  3606. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3607. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3608. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3609. prodfilt -s $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3610. @del $(O)\$(@B).tmp1
  3611. @del $(O)\$(@B).tmp2
  3612. @del $(O)\$(@B).txt1
  3613. $(STAMP)
  3614. $(TSBINPLACE_CMD)
  3615. $(O)\pchealth.inf: $(_INX)\pchealth.inx $(_LNG)\pchealth.txt
  3616. $(CC) $(PREFLAGS) $(_INX)\$(@B).inx > $(O)\$(@B).tmp1
  3617. copy $(O)\$(@B).tmp1+$(_LNG)\$(@B).txt $(O)\$(@B).tmp2
  3618. prodfilt -s $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PRODSWITCH)
  3619. prodfilt -s $(O)\$(@B).tmp3 $@ +$(PLATFORM_SWITCH)
  3620. @del $(O)\$(@B).tmp1
  3621. @del $(O)\$(@B).tmp2
  3622. @del $(O)\$(@B).tmp3
  3623. $(TSBINPLACE_CMD)
  3624. #
  3625. # END PCHealth preprocessing.
  3626. #
  3627. $(O)\apphlpui.inf: $(_INX)\apphlpui.inx $(_LNG)\apphlpui.txt
  3628. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3629. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3630. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3631. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3632. @del $(O)\$(@B).tmp1
  3633. @del $(O)\$(@B).tmp2
  3634. @del $(O)\$(@B).txt1
  3635. $(STAMP)
  3636. $(TSBINPLACE_CMD)
  3637. $(O)\sr.inf: $(_INX)\sr.inx $(_LNG)\sr.txt
  3638. copy $(_INX)\$(@B).inx+$(_LNG)\$(@B).txt $(O)\$(@B).tmp1
  3639. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3640. prodfilt -s $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3641. @del $(O)\$(@B).tmp1
  3642. @del $(O)\$(@B).tmp2
  3643. $(TSBINPLACE_CMD)
  3644. $(O)\mmdriver.inf: $(_INX)\mmdriver.inx
  3645. prodfilt -s $(_INX)\$(@B).inx $@ +$(PRODSWITCH)
  3646. $(TSBINPLACE_CMD)
  3647. $(O)\ie5ui.inf: $(_INX)\ie5ui.inx $(_LNG)\ie5ui.txt
  3648. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3649. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3650. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3651. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3652. @del $(O)\$(@B).tmp1
  3653. @del $(O)\$(@B).tmp2
  3654. @del $(O)\$(@B).txt1
  3655. $(STAMP)
  3656. $(TSBINPLACE_CMD)
  3657. $(O)\wie5ui.inf: $(_INX)\wie5ui.inx $(_LNG)\wie5ui.txt
  3658. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3659. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3660. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3661. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3662. @del $(O)\$(@B).tmp1
  3663. @del $(O)\$(@B).tmp2
  3664. @del $(O)\$(@B).txt1
  3665. $(STAMP)
  3666. $(TSBINPLACE_CMD)
  3667. $(O)\moviemui.inf: $(_INX)\moviemui.inx $(_LNG)\moviemui.txt
  3668. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3669. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3670. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3671. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3672. @del $(O)\$(@B).tmp1
  3673. @del $(O)\$(@B).tmp2
  3674. @del $(O)\$(@B).txt1
  3675. $(STAMP)
  3676. $(TSBINPLACE_CMD)
  3677. $(O)\ermui.inf: $(_INX)\ermui.inx $(_LNG)\ermui.txt
  3678. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3679. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3680. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3681. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3682. @del $(O)\$(@B).tmp1
  3683. @del $(O)\$(@B).tmp2
  3684. @del $(O)\$(@B).txt1
  3685. $(STAMP)
  3686. $(TSBINPLACE_CMD)
  3687. $(O)\wermui.inf: $(_INX)\wermui.inx $(_LNG)\wermui.txt
  3688. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3689. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3690. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3691. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3692. @del $(O)\$(@B).tmp1
  3693. @del $(O)\$(@B).tmp2
  3694. @del $(O)\$(@B).txt1
  3695. $(STAMP)
  3696. $(TSBINPLACE_CMD)
  3697. $(O)\tourmui.inf: $(_INX)\tourmui.inx $(_LNG)\tourmui.txt
  3698. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3699. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3700. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3701. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3702. @del $(O)\$(@B).tmp1
  3703. @del $(O)\$(@B).tmp2
  3704. @del $(O)\$(@B).txt1
  3705. $(STAMP)
  3706. $(TSBINPLACE_CMD)
  3707. $(O)\drivercab.inf: $(_INX)\drivercab.inx $(_LNG)\drivercab.txt
  3708. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3709. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3710. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3711. prodfilt -s $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3712. @del $(O)\$(@B).tmp1
  3713. @del $(O)\$(@B).tmp2
  3714. @del $(O)\$(@B).txt1
  3715. $(STAMP)
  3716. $(TSBINPLACE_CMD)
  3717. #
  3718. # icwnt5.inf
  3719. # Note: THis is currently not run through prodfilt. You will need to do that if you make any platform specific or
  3720. # product specific changes to the inx/txt file in the future.
  3721. #
  3722. $(O)\icwnt5.inf: $(_INX)\icwnt5.inx \
  3723. !if $(WIN64)
  3724. $(O)\wowlist.inf \
  3725. !endif
  3726. $(_LNG)\icwnt5.txt
  3727. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3728. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3729. $(C_COMPILER_NAME) -EP $(CDEFINES) $(O)\$(@B).tmp1 >$@
  3730. !if $(WIN64)
  3731. copy $@ $(O)\$(@B).tmp2
  3732. wowlist -i $@ -c $(O)\wowlist.inf -as -f w -d $(O)\icwnt5.wow -o $(O)\$(@B).tmp3
  3733. copy $(O)\$(@B).tmp2+$(O)\$(@B).tmp3 $@
  3734. @del $(O)\$(@B).tmp2 $(O)\$(@B).tmp3
  3735. !endif
  3736. @del $(O)\$(@B).tmp1
  3737. @del $(O)\$(@B).txt1
  3738. $(TSBINPLACE_CMD)
  3739. !if $(WIN64)
  3740. $(O)\icwnt5.wow: $(O)\icwnt5.inf
  3741. !endif
  3742. $(O)\ieaccess.inf: $(_INX)\ieaccess.inx $(_LNG)\ieaccess.txt
  3743. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3744. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3745. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3746. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3747. @del $(O)\$(@B).tmp1
  3748. @del $(O)\$(@B).tmp2
  3749. @del $(O)\$(@B).txt1
  3750. $(STAMP)
  3751. $(TSBINPLACE_CMD)
  3752. $(O)\oeaccess.inf: $(_INX)\oeaccess.inx $(_LNG)\oeaccess.txt
  3753. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3754. copy $(_INX)\$(@B).inx+$(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3755. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3756. prodfilt $(O)\$(@B).tmp2 $@ +$(PLATFORM_SWITCH)
  3757. @del $(O)\$(@B).tmp1
  3758. @del $(O)\$(@B).tmp2
  3759. @del $(O)\$(@B).txt1
  3760. $(STAMP)
  3761. $(TSBINPLACE_CMD)
  3762. $(O)\drvindex.inf: $(_INX)\drvindex.inx $(O)\spmap.txt
  3763. $(CC) $(PREFLAGS) $(_INX)\$(@B).inx > $(O)\$(@B).tmp1
  3764. prodfilt -s $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PRODSWITCH)
  3765. prodfilt -s $(O)\$(@B).tmp2 $(O)\$(@B).tmp3 +$(PLATFORM_SWITCH)
  3766. perl $(_INX)\spdrivers.pl $(O)\$(@B).tmp3 $@ $(O)\spmap.txt
  3767. @del $(O)\$(@B).tmp1
  3768. @del $(O)\$(@B).tmp2
  3769. @del $(O)\$(@B).tmp3
  3770. $(TSBINPLACE_CMD)
  3771. #
  3772. # Update.inf's for both Hotfixes and Service Pack are
  3773. # both built using update.inx and update.txt
  3774. #
  3775. # Update.inf
  3776. #
  3777. $(O)\update.inf: $(_INX)\update.inx $(_LNG)\update.txt $(O)\ietoken.mak
  3778. $(CC) $(PREFLAGS) /DIE_VERS=$(IE_VERS) $(_INX)\update.inx > $(O)\$(@B).inx1
  3779. $(CC) $(PREFLAGS) $(_LNG)\$(@B).txt > $(O)\$(@B).txt1
  3780. infmerge.exe $(O)\$(@B).inx1 $(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3781. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  3782. prodfilt $(O)\$(@B).tmp2 $(O)\$(@B).inftok +u
  3783. nmake -f $(O)\ietoken.mak $@
  3784. @del $(O)\$(@B).tmp1
  3785. @del $(O)\$(@B).tmp2
  3786. @del $(O)\$(@B).inx1
  3787. @del $(O)\$(@B).txt1
  3788. @del $(O)\$(@B).inftok
  3789. !if "$(PRODSWITCH)"=="w" || "$(PRODSWITCH)"=="W"
  3790. $(TSBINPLACE_CMD)
  3791. !endif
  3792. #
  3793. # Hotfix.inf using update.inx
  3794. #
  3795. $(O)\hotfix.inf: $(_INX)\update.inx $(_LNG)\update.txt
  3796. $(CC) $(PREFLAGS) /DIE_VERS=$(IE_VERS) /DQFE_NUM=$(QFE_NUM) $(_INX)\update.inx > $(O)\$(@B).inx1
  3797. $(CC) $(PREFLAGS) $(_LNG)\update.txt > $(O)\$(@B).txt1
  3798. infmerge.exe $(O)\$(@B).inx1 $(O)\$(@B).txt1 $(O)\$(@B).tmp1
  3799. prodfilt $(O)\$(@B).tmp1 $(O)\$(@B).tmp2 +$(PLATFORM_SWITCH)
  3800. prodfilt $(O)\$(@B).tmp2 $@ +h
  3801. @del $(O)\$(@B).tmp1
  3802. @del $(O)\$(@B).tmp2
  3803. @del $(O)\$(@B).inx1
  3804. @del $(O)\$(@B).txt1
  3805. !if "$(PRODSWITCH)"=="w" || "$(PRODSWITCH)"=="W"
  3806. $(TSBINPLACE_CMD)
  3807. !endif
  3808. #
  3809. # Make files used in constructing the service pack.
  3810. #
  3811. $(O)\infsect.tbl: $(_INX)\infsect.inx $(_LNG)\infsect.txt
  3812. prodfilt $(_LNG)\infsect.txt $(O)\$(@B).txt1 +$(PLATFORM_SWITCH)
  3813. perl $(_INX)\maketable.pl $(O)\$(@B).inx1 $(_INX)\infsect.inx $(O)\$(@B).txt1
  3814. prodfilt $(O)\$(@B).inx1 $@ +$(PLATFORM_SWITCH)
  3815. @del $(O)\$(@B).txt1
  3816. @del $(O)\$(@B).inx1
  3817. !if "$(PRODSWITCH)"=="w" || "$(PRODSWITCH)"=="W"
  3818. $(TSBINPLACE_CMD)
  3819. !endif
  3820. $(O)\spmap.txt: $(_INX)\spmap.inx $(_LNG)\spmap.txt
  3821. prodfilt $(_LNG)\spmap.txt $(O)\$(@B).txt1 +$(PLATFORM_SWITCH)
  3822. perl $(_INX)\maketable.pl $(O)\$(@B).inx1 $(_INX)\spmap.inx $(O)\$(@B).txt1
  3823. prodfilt $(O)\$(@B).inx1 $@ +$(PLATFORM_SWITCH)
  3824. @del $(O)\$(@B).txt1
  3825. @del $(O)\$(@B).inx1
  3826. !if "$(PRODSWITCH)"=="w" || "$(PRODSWITCH)"=="W"
  3827. $(TSBINPLACE_CMD)
  3828. !endif