source: branches/gcc-kmk/Config.kmk@ 21718

Last change on this file since 21718 was 21695, checked in by dmik, 14 years ago

Add makefiles for kernel32 (+seh/unicode helpers).

  • Property svn:eol-style set to native
File size: 1.7 KB
RevLine 
[21690]1## @file
2# Global Project Configuration File
3#
4
5#------------------------------------------------------------------------------
6# Global definitions
7#------------------------------------------------------------------------------
8
9#------------------------------------------------------------------------------
10# Common libraries referenced by components
11#------------------------------------------------------------------------------
12
13#------------------------------------------------------------------------------
14# General Stuff
15#------------------------------------------------------------------------------
16
[21695]17TEMPLATE_OdinCxx = Odin C++ sources
18TEMPLATE_OdinCxx_TOOL = GXX3OMF
19TEMPLATE_OdinCxx_INCS = $(PATH_ROOT)/include/win $(PATH_ROOT)/include
20TEMPLATE_OdinCxx_DEFS = __WIN32OS2__ __WINE__ __i386__ TCPV40HDRS COMCTL32UNDOC
21
22TEMPLATE_OdinCRT = OdinCRT library
23TEMPLATE_OdinCRT_EXTENDS = OdinCxx
24TEMPLATE_OdinCRT_EXTENDS_BY = overriding
25TEMPLATE_OdinCRT_DEFS = __WIN32OS2__ __WINE__ __i386__
26
27TEMPLATE_OdinCRT = Win32 application
28TEMPLATE_OdinCRT_EXTENDS = OdinCxx
29TEMPLATE_OdinCRT_EXTENDS_BY = overriding
30TEMPLATE_OdinCRT_DEFS = __WIN32OS2__ __i386__
31
[21690]32#------------------------------------------------------------------------------
33# GCC Stuff
34#------------------------------------------------------------------------------
35
36#------------------------------------------------------------------------------
37# Other Stuff
38#------------------------------------------------------------------------------
39
40#
41# Include a site-specific config for local overrides
42#
43ifndef LOCALCFG
44 LOCALCFG := $(wildcard $(PATH_ROOT)/LocalConfig.kmk)
45 ifneq ($(LOCALCFG),)
46 include $(LOCALCFG)
47 endif
48endif
Note: See TracBrowser for help on using the repository browser.