diff options
author | Sven Schnelle <svens@stackframe.org> | 2011-03-29 09:01:10 +0000 |
---|---|---|
committer | Sven Schnelle <svens@stackframe.org> | 2011-03-29 09:01:10 +0000 |
commit | d69438e05ebc94f0de6df12b70e329cf76672b00 (patch) | |
tree | 278581b3f1e5f48dbcee63ee986c8bef4581438b /Makefile.inc | |
parent | 910f4ca5c50ef9d1d05c46b3ff52c69d29f745dd (diff) |
BUILD: add missing config.h dependency
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Acked-by: Patrick Georgi <patrick.georgi@secunet.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6467 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.inc b/Makefile.inc index 54d472a4ff..3f553c629e 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -61,7 +61,7 @@ romstage-c-deps:=$$(OPTION_TABLE_H) ####################################################################### # Add handler to compile ACPI's ASL define ramstage-objs_asl_template -$(obj)/$(1).ramstage.o: src/$(1).asl +$(obj)/$(1).ramstage.o: src/$(1).asl $(obj)/config.h @printf " IASL $$(subst $(top)/,,$$(@))\n" $(CPP) -MMD -MT $$(@) -D__ACPI__ -P -include $(abspath $(obj)/config.h) -I$(src) -I$(src)/mainboard/$(MAINBOARDDIR) $$< -o $$(basename $$@).asl iasl -p $$(obj)/$(1) -tc $$(basename $$@).asl |