41 lines
1007 B
Plaintext
41 lines
1007 B
Plaintext
|
# @(#)vc6-interix-setup 1.4 07/04/20 Copyright 2006 J. Schilling
|
||
|
|
||
|
#
|
||
|
# Disable warnings for nonportable variable assignements.
|
||
|
# We only use smake MS-WIN, so this is not a problem.
|
||
|
#
|
||
|
.NO_WARN: :=
|
||
|
|
||
|
VSCommonDir=C:\Programme\Microsoft Visual Studio\Common
|
||
|
VSCommonPath=/dev/fs/C/Programme/Microsoft Visual Studio/Common
|
||
|
export VSCommonDir
|
||
|
|
||
|
MSDevDir=C:\Programme\Microsoft Visual Studio\Common\msdev98
|
||
|
MSDevPath=/dev/fs/C/Programme/Microsoft Visual Studio/Common/msdev98
|
||
|
export MSDevDir
|
||
|
|
||
|
MSVCDir=C:\Programme\Microsoft Visual Studio\VC98
|
||
|
MSVCPath=/dev/fs/C/Programme/Microsoft Visual Studio/VC98
|
||
|
export MSVCDir
|
||
|
|
||
|
VcOsDir=WIN95
|
||
|
VcOsDir=WINNT
|
||
|
export VcOsDir
|
||
|
|
||
|
PATH :=${MSDevPath}\BIN:${MSVCPath}\BIN:${VSCommonPath}\TOOLS\${VcOsDir}:${VSCommonPath}\TOOLS:${PATH}
|
||
|
export PATH
|
||
|
|
||
|
INCLUDE :=${MSVCDir}\ATL\INCLUDE;${MSVCDir}\INCLUDE;${MSVCDir}\\MFC\INCLUDE;${INCLUDE}
|
||
|
export INCLUDE
|
||
|
|
||
|
LIB :=${MSVCDir}\LIB;${MSVCDir}\MFC\LIB;${LIB}
|
||
|
export LIB
|
||
|
|
||
|
VC_SETUP=dummy-setup
|
||
|
export VC_SETUP
|
||
|
|
||
|
#
|
||
|
# Re-enable all warnings.
|
||
|
#
|
||
|
.NO_WARN:
|