-
Notifications
You must be signed in to change notification settings - Fork 0
/
MakefileLangPlat.mak
38 lines (28 loc) · 2.02 KB
/
MakefileLangPlat.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
# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright © 1991-2022 Amebis
!IFDEF HAS_VERSION
######################################################################
# 2nd Phase
# - The version is known, do the rest.
######################################################################
######################################################################
# Setup
######################################################################
SetupPackage ::
cd "MSI\ZRCola"
$(MAKE) /f "Makefile" /$(MAKEFLAGS) LANG=$(LANG) PLAT=$(PLAT) CFG=Release
cd "$(MAKEDIR)"
SetupDebugPackage ::
cd "MSI\ZRCola"
$(MAKE) /f "Makefile" /$(MAKEFLAGS) LANG=$(LANG) PLAT=$(PLAT) CFG=Debug
cd "$(MAKEDIR)"
!ENDIF
######################################################################
# Configuration Specific
######################################################################
CFG=Release
CFG_SUFFIX=
!INCLUDE "MakefileLangPlatCfg.mak"
CFG=Debug
CFG_SUFFIX=D
!INCLUDE "MakefileLangPlatCfg.mak"