Leaked source code of windows server 2003
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.

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