summaryrefslogtreecommitdiff
path: root/makefiles/nmake/platform.mk
blob: 11f9aad6c4a7041d53aa66a4434e94a1f61cd82d (plain)
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
# Sets Windows specific variables
#
# requires:
# - 
#
# provides:
# - PLATFORM_SDK_DIR: the location of the Windows Platform SDK, used
#   for compiling anything from the Win32 API into a binary/library
#
# author: Andreas Baumann, abaumann at yahoo dot com

# The location of the Windows Platform SDK
PLATFORM_SDK_DIR = C:\Programme\Microsoft Platform SDK for Windows Server 2003 R2

# TODO: maybe we have to probe certain things like the version
# of the visual studio or the availability of certain addons
# like Windows Unix Services, MOSS stuff or SDKs

#PLATFORM =		$(shell $(TOPDIR)/makefiles/gmake/guess_env --platform $(CC))
#OS_MAJOR_VERSION =	$(shell $(TOPDIR)/makefiles/gmake/guess_env --os-major-version $(CC))
#OS_MINOR_VERSION =	$(shell $(TOPDIR)/makefiles/gmake/guess_env --os-minor-version $(CC))
#COMPILER =		$(shell $(TOPDIR)/makefiles/gmake/guess_env --compiler $(CC))

#PLATFORM_COMPILE_FLAGS = \
#			-D$(PLATFORM) \
#			-DOS_MAJOR_VERSION=$(OS_MAJOR_VERSION) \
#			-DOS_MINOR_VERSION=$(OS_MINOR_VERSION)