forked from Amebis/eduVPN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MakefileCfg.mak
47 lines (33 loc) · 1.37 KB
/
MakefileCfg.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
40
41
42
43
44
45
46
47
#
# eduVPN - VPN for education and research
#
# Copyright: 2017-2020 The Commons Conservancy eduVPN Programme
# SPDX-License-Identifier: GPL-3.0+
#
# WiX parameters
WIX_CANDLE_FLAGS_CFG=$(WIX_CANDLE_FLAGS)
######################################################################
# Building
######################################################################
"$(OUTPUT_DIR)\$(CFG)" :
if not exist $@ md $@
"$(OUTPUT_DIR)\$(CFG)\TAP-Windows.wixobj" : "TAP-Windows.wxs"
"$(WIX)bin\wixcop.exe" $(WIX_WIXCOP_FLAGS) $**
"$(WIX)bin\candle.exe" $(WIX_CANDLE_FLAGS) -out $@ $**
Clean ::
-if exist "$(OUTPUT_DIR)\$(CFG)\TAP-Windows.wixobj" del /f /q "$(OUTPUT_DIR)\$(CFG)\TAP-Windows.wixobj"
-if exist "$(OUTPUT_DIR)\$(CFG)\tap-windows-9.21.2.exe" del /f /q "$(OUTPUT_DIR)\$(CFG)\tap-windows-9.21.2.exe"
######################################################################
# Platform specific rules
######################################################################
PLAT=x86
!INCLUDE "MakefileCfgPlat.mak"
PLAT=x64
!INCLUDE "MakefileCfgPlat.mak"
######################################################################
# Client-specific rules
######################################################################
!INCLUDE "eduVPN.mak"
!INCLUDE "MakefileCfgClient.mak"
!INCLUDE "LetsConnect.mak"
!INCLUDE "MakefileCfgClient.mak"