1# @(#)vc7_64-setup	1.1 09/05/16 Copyright 2006 J. Schilling
2
3#
4# Keep in sync with vc7_64-cygwin-setup as we cannot rely on hard links
5#
6
7#
8# Disable warnings for nonportable variable assignements.
9# We only use smake MS-WIN, so this is not a problem.
10#
11.NO_WARN: :=
12
13#
14# A German installation on a German Windows (32Bit) host, to be used
15# for cross compiling stuff (no autoconf run)
16#
17#VSINSTALLDIR=C:\Programme\Microsoft Visual Studio 8
18#VSINS=/cygdrive/c/Programme/Microsoft Visual Studio 8
19
20#
21# An English installation on an English Windows XP 64 Bit host
22#
23VSINSTALLDIR=C:\Program Files (x86)\Microsoft Visual Studio 8
24VSINS=/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 8
25
26export	VSINSTALLDIR
27
28VCINSTALLDIR :=${VSINSTALLDIR}\VC
29export	VCINSTALLDIR
30
31PATH :=${VSINS}/VC/BIN/amd64:${VSINS}/Common7/IDE:${PATH}
32export	PATH
33
34INCLUDE :=${VCINSTALLDIR}\INCLUDE;${VCINSTALLDIR}\PlatformSDK\INCLUDE;${INCLUDE}
35export	INCLUDE
36
37LIB :=${VCINSTALLDIR}\LIB\amd64;${VCINSTALLDIR}\PlatformSDK\LIB\amd64;${LIB}
38export	LIB
39
40VC_SETUP=dummy-setup
41export	VC_SETUP
42
43#
44# Re-enable all warnings.
45#
46.NO_WARN:
47