-
Notifications
You must be signed in to change notification settings - Fork 14
/
MakefilePlat.mak
39 lines (27 loc) · 2.55 KB
/
MakefilePlat.mak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright © 1991-2022 Amebis
# Copyright © 2016 GÉANT
CleanSetup ::
msbuild.exe $(MSBUILDFLAGS) "$(MSIBUILD_PRODUCT_NAME_ID).sln" /t:Clean /p:Platform=$(PLAT) /p:Configuration=Release
msbuild.exe $(MSBUILDFLAGS) "$(MSIBUILD_PRODUCT_NAME_ID).sln" /t:Clean /p:Platform=$(PLAT) /p:Configuration=Debug
######################################################################
# Setup
######################################################################
Setup :: \
"output\Setup\$(MSIBUILD_PRODUCT_NAME_ID)$(PLAT_SUFFIX).msi"
SetupDebug :: \
"output\Setup\$(MSIBUILD_PRODUCT_NAME_ID)$(PLAT_SUFFIX)D.msi"
SetupCompile ::
msbuild.exe $(MSBUILDFLAGS) "$(MSIBUILD_PRODUCT_NAME_ID).sln" /t:Build /p:Platform=$(PLAT) /p:Configuration=Release
SetupDebugCompile ::
msbuild.exe $(MSBUILDFLAGS) "$(MSIBUILD_PRODUCT_NAME_ID).sln" /t:Build /p:Platform=$(PLAT) /p:Configuration=Debug
"output\Setup\PDB.zip" : output\$(PLAT).Release\*.pdb
######################################################################
# Configuration Specific
######################################################################
CFG=Release
CFG_SUFFIX=
!INCLUDE "MakefilePlatCfg.mak"
CFG=Debug
CFG_SUFFIX=D
!INCLUDE "MakefilePlatCfg.mak"