GenRSAKeypair is platform independent. When in the MakefilePlat.mak, it is invoked once per each platform. It was not harmful. Just excessive. Signed-off-by: Simon Rozman <simon@rozman.si>
37 lines
2.8 KiB
Makefile
37 lines
2.8 KiB
Makefile
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
# Copyright © 1991-2022 Amebis
|
|
|
|
######################################################################
|
|
# Setup
|
|
######################################################################
|
|
|
|
SetupCompile ::
|
|
msbuild.exe $(MSBUILDFLAGS) "ZRCola.sln" /t:Build /p:Configuration=Release /p:Platform=$(PLAT)
|
|
msbuild.exe $(MSBUILDFLAGS) "MSI\MSICA\MSICA.sln" /t:Build /p:Configuration=Release /p:Platform=$(PLAT)
|
|
msbuild.exe $(MSBUILDFLAGS) "Updater\Updater.sln" /t:Build /p:Configuration=Release /p:Platform=$(PLAT)
|
|
|
|
SetupDebugCompile ::
|
|
msbuild.exe $(MSBUILDFLAGS) "ZRCola.sln" /t:Build /p:Configuration=Debug /p:Platform=$(PLAT)
|
|
msbuild.exe $(MSBUILDFLAGS) "MSI\MSICA\MSICA.sln" /t:Build /p:Configuration=Debug /p:Platform=$(PLAT)
|
|
msbuild.exe $(MSBUILDFLAGS) "Updater\Updater.sln" /t:Build /p:Configuration=Debug /p:Platform=$(PLAT)
|
|
|
|
|
|
######################################################################
|
|
# Publishing
|
|
######################################################################
|
|
|
|
"output\PDB.zip" : output\$(PLAT).Release\*.pdb
|
|
|
|
|
|
######################################################################
|
|
# Configuration Specific
|
|
######################################################################
|
|
|
|
CFG=Release
|
|
CFG_SUFFIX=
|
|
!INCLUDE "MakefilePlatCfg.mak"
|
|
|
|
CFG=Debug
|
|
CFG_SUFFIX=D
|
|
!INCLUDE "MakefilePlatCfg.mak"
|