aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-04-04 22:55:49 +0000
committerStefan Reinauer <stepan@openbios.org>2009-04-04 22:55:49 +0000
commita73fc4b6c57c9aaed1673732d8fa44ee9b911cbf (patch)
tree2ca512ba5b74b264aa7ab4a5d9978cb0c7e938ee /util
parent9f243a11326724221732900b2fb37ebd2ce7b1dd (diff)
Makefile includes were mixed up.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4072 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rw-r--r--util/romtool/Makefile2
-rw-r--r--util/romtool/tools/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/util/romtool/Makefile b/util/romtool/Makefile
index 3ef1748095..291c940a18 100644
--- a/util/romtool/Makefile
+++ b/util/romtool/Makefile
@@ -21,7 +21,7 @@ $(obj)/romtool: $(patsubst %,$(obj)/%,$(OBJ))
tobj = $(obj)/tools
tsrc = $(shell pwd)/tools
-include tools/Makefile
+include $(tsrc)/Makefile
$(obj)/%.o: %.c $(INC)
$(CC) $(CFLAGS) -c -o $@ $<
diff --git a/util/romtool/tools/Makefile b/util/romtool/tools/Makefile
index f5f0df8add..bcecf46636 100644
--- a/util/romtool/tools/Makefile
+++ b/util/romtool/tools/Makefile
@@ -5,7 +5,7 @@ TARGETS += $(tobj)/rom-mkstage $(tobj)/rom-mkpayload
tools: $(tobj)/rom-mkstage $(tobj)/rom-mkpayload
-include $(tobj)/lzma/Makefile
+include $(tsrc)/lzma/Makefile
COMMON = common.o compress.o $(LZMA_OBJ)