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

18 lines
720 B

  1. UISAMPLE_IDT=$(MSI_DATA_DIR)\uisample.idt
  2. SCHEMA_IDT=$(MSI_DATA_DIR)\schema.idt
  3. MSI_INTLDATA_DIR=$(MSI_DATA_DIR)\intl
  4. UISample: $(BUILD_PACKAGEDIR)\uisample.msi
  5. $(O)\error.idt: $(MSI_INTLDATA_DIR)\error.enu
  6. copy $(MSI_INTLDATA_DIR)\error.enu $(O)\error.idt
  7. $(O)\actionte.idt: $(MSI_INTLDATA_DIR)\actionte.enu
  8. copy $(MSI_INTLDATA_DIR)\actionte.enu $(O)\actionte.idt
  9. $(BUILD_PACKAGEDIR)\uisample.msi: $(UISAMPLE_IDT)\*.idt $(SCHEMA_IDT)\_validat.idt $(O)\error.idt $(O)\actionte.idt
  10. if not exist $(BUILD_PACKAGEDIR) md $(BUILD_PACKAGEDIR)
  11. msidb.exe -i -f$(UISAMPLE_IDT) -c -d$@ *.idt
  12. msidb.exe -i -f$(SCHEMA_IDT) -d$@ _validat.idt
  13. msidb.exe -f $(UISAMPLE_IDT)\$(O) -i -d$@ error.idt actionte.idt