113 lines
3.7 KiB
Makefile
113 lines
3.7 KiB
Makefile
#
|
|
# Copyright 1991-2017 Amebis
|
|
#
|
|
# This file is part of ZRCola.
|
|
#
|
|
# ZRCola is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# ZRCola is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with ZRCola. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
!INCLUDE "..\..\..\include\MSIBuildCfg.mak"
|
|
|
|
|
|
######################################################################
|
|
# AppSearch
|
|
|
|
All :: "$(LANG).$(PLAT).$(CFG).AppSearch-1.idt"
|
|
|
|
"$(LANG).$(PLAT).$(CFG).AppSearch-1.idt" : "Makefile" "..\..\..\include\MSIBuildCfg.mak"
|
|
-if exist $@ del /f /q $@
|
|
move /y << $@ > NUL
|
|
Property Signature_
|
|
s$(MSIBUILD_LENGTH_ID) s$(MSIBUILD_LENGTH_ID)
|
|
AppSearch Property Signature_
|
|
OLDZRCOLADIR cllibZRCola10u_vc100.dll.$(PLAT)
|
|
<<NOKEEP
|
|
|
|
|
|
######################################################################
|
|
# CompLocator
|
|
|
|
All :: "$(LANG).$(PLAT).$(CFG).CompLocator-1.idt"
|
|
|
|
"$(LANG).$(PLAT).$(CFG).CompLocator-1.idt" : "Makefile" "..\..\..\include\MSIBuildCfg.mak"
|
|
-if exist $@ del /f /q $@
|
|
move /y << $@ > NUL
|
|
Signature_ ComponentId Type
|
|
s$(MSIBUILD_LENGTH_ID) s38 I2
|
|
CompLocator Signature_
|
|
!IF "$(PLAT)" == "Win32"
|
|
cllibZRCola10u_vc100.dll.Win32 {2251DF13-062A-4955-BEEE-CAB1A7041E93} 1
|
|
!ENDIF
|
|
!IF "$(PLAT)" == "x64"
|
|
cllibZRCola10u_vc100.dll.x64 {23078D23-1397-4FD7-BB32-E012FEF8645A} 1
|
|
!ENDIF
|
|
<<NOKEEP
|
|
|
|
|
|
######################################################################
|
|
# Component
|
|
|
|
All :: "$(LANG).$(PLAT).$(CFG).Component-1.idt"
|
|
|
|
"$(LANG).$(PLAT).$(CFG).Component-1.idt" : "Makefile" "..\..\..\include\MSIBuildCfg.mak"
|
|
-if exist $@ del /f /q $@
|
|
move /y << $@ > NUL
|
|
Component ComponentId Directory_ Attributes Condition KeyPath
|
|
s$(MSIBUILD_LENGTH_ID) S38 s$(MSIBUILD_LENGTH_ID) i2 S255 S$(MSIBUILD_LENGTH_ID)
|
|
Component Component
|
|
!IF "$(PLAT)" == "Win32"
|
|
complibZRCola.dll.Win32 {2251DF13-062A-4955-BEEE-CAB1A7041E93} ZRCOLABINDIR 0 filelibZRCola.dll.Win32
|
|
!ENDIF
|
|
!IF "$(PLAT)" == "x64"
|
|
complibZRCola.dll.x64 {23078D23-1397-4FD7-BB32-E012FEF8645A} ZRCOLABINDIR 256 filelibZRCola.dll.x64
|
|
!ENDIF
|
|
<<NOKEEP
|
|
|
|
|
|
######################################################################
|
|
# File
|
|
|
|
All :: "$(LANG).$(PLAT).$(CFG).File-1.idt"
|
|
|
|
"$(LANG).$(PLAT).$(CFG).File-1.idt" : "Makefile" "..\..\..\include\MSIBuildCfg.mak"
|
|
-if exist $@ del /f /q $@
|
|
move /y << $@ > NUL
|
|
File Component_ FileName FileSize Version Language Attributes Sequence
|
|
s$(MSIBUILD_LENGTH_ID) s$(MSIBUILD_LENGTH_ID) l255 i4 S$(MSIBUILD_LENGTH_ID) S20 I2 i2
|
|
File File
|
|
!IF "$(PLAT)" == "Win32"
|
|
!IF "$(CFG)" == "Release"
|
|
filelibZRCola.dll.Win32 complibZRCola.dll.Win32 LIBZRC~1.DLL|libZRCola10u_vc100.dll 0 0 1536 1
|
|
!ENDIF
|
|
!IF "$(CFG)" == "Debug"
|
|
filelibZRCola.dll.Win32 complibZRCola.dll.Win32 LIBZRC~3.DLL|libZRCola10ud_vc100.dll 0 0 1536 1
|
|
!ENDIF
|
|
!ENDIF
|
|
!IF "$(PLAT)" == "x64"
|
|
!IF "$(CFG)" == "Release"
|
|
filelibZRCola.dll.x64 complibZRCola.dll.x64 LIBZRC~5.DLL|libZRCola10u_vc100_x64.dll 0 0 1536 1
|
|
!ENDIF
|
|
!IF "$(CFG)" == "Debug"
|
|
filelibZRCola.dll.x64 complibZRCola.dll.x64 LIBZRC~7.DLL|libZRCola10ud_vc100_x64.dll 0 0 1536 1
|
|
!ENDIF
|
|
!ENDIF
|
|
<<NOKEEP
|
|
|
|
|
|
######################################################################
|
|
# Build MSM module!
|
|
######################################################################
|
|
|
|
!INCLUDE "..\..\..\MSI\MSIBuild\MSM.mak"
|