blob: d95ebfad46753c3b43a5d05c3986e4fdf2fb15f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# file : build/c/configuration-static.make
# author : Boris Kolpackov <boris@codesynthesis.com>
# copyright : Copyright (c) 2004-2010 Code Synthesis Tools CC
# license : GNU GPL v2; see accompanying LICENSE file
c_h_suffix := h
c_s_suffix := c
# Get user-supplied static configuration if any.
#
ifneq ($(bld_root),$(scf_root))
$(call -include,$(scf_root)/c/configuration-static.make)
endif
|