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

Last change on this file since 21692 was 21690, checked in by dmik, 14 years ago

Add global kmk configuration and top-level makefile.

  • Property svn:eol-style set to native
File size: 1.1 KB
Line 
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
17#------------------------------------------------------------------------------
18# GCC Stuff
19#------------------------------------------------------------------------------
20
21#------------------------------------------------------------------------------
22# Other Stuff
23#------------------------------------------------------------------------------
24
25#
26# Include a site-specific config for local overrides
27#
28ifndef LOCALCFG
29 LOCALCFG := $(wildcard $(PATH_ROOT)/LocalConfig.kmk)
30 ifneq ($(LOCALCFG),)
31 include $(LOCALCFG)
32 endif
33endif
Note: See TracBrowser for help on using the repository browser.