summaryrefslogtreecommitdiffstats
path: root/src/include/compiler.h
diff options
context:
space:
mode:
authorMichael Brown2015-03-04 18:22:07 +0100
committerMichael Brown2015-03-05 01:57:44 +0100
commit86ae6e6c1836e43993a14db278398fc54e5419bd (patch)
tree92758900be8ba37c36448094747ace0c2f97e13e /src/include/compiler.h
parent[build] Remove obsolete and unused portions of config.c (diff)
downloadipxe-86ae6e6c1836e43993a14db278398fc54e5419bd.tar.gz
ipxe-86ae6e6c1836e43993a14db278398fc54e5419bd.tar.xz
ipxe-86ae6e6c1836e43993a14db278398fc54e5419bd.zip
[build] Use REQUIRE_OBJECT() to drag in per-object configuration
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/compiler.h')
-rw-r--r--src/include/compiler.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/include/compiler.h b/src/include/compiler.h
index 0b6f61a3..f877ebce 100644
--- a/src/include/compiler.h
+++ b/src/include/compiler.h
@@ -115,15 +115,10 @@
#define PREFIX_OBJECT( _prefix ) _C2 ( _prefix, OBJECT )
#define OBJECT_SYMBOL PREFIX_OBJECT ( obj_ )
-#define REQUEST_EXPANDED( _sym ) REQUEST_SYMBOL ( _sym )
-#define CONFIG_SYMBOL PREFIX_OBJECT ( obj_config_ )
/** Always provide the symbol for the current object (defined by -DOBJECT) */
PROVIDE_SYMBOL ( OBJECT_SYMBOL );
-/** Pull in an object-specific configuration file if available */
-REQUEST_EXPANDED ( CONFIG_SYMBOL );
-
/** Explicitly require another object */
#define REQUIRE_OBJECT( _obj ) REQUIRE_SYMBOL ( obj_ ## _obj )