Makefile includes were mixed up.
authorStefan Reinauer <stepan@coresystems.de>
Sat, 4 Apr 2009 22:55:49 +0000 (22:55 +0000)
committerStefan Reinauer <stepan@openbios.org>
Sat, 4 Apr 2009 22:55:49 +0000 (22:55 +0000)
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

util/romtool/Makefile
util/romtool/tools/Makefile

index 3ef1748095555aa897229ad53f6dfa61f465f0d4..291c940a18fe86a937434c4678f6a54e66dd4f85 100644 (file)
@@ -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 $@ $<
index f5f0df8addfaead08c941be5eeacd863a48f3b76..bcecf466365739c29c45123f6cc06a31e74a663b 100644 (file)
@@ -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)