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
This commit is contained in:
Stefan Reinauer 2009-04-04 22:55:49 +00:00 committed by Stefan Reinauer
parent 9f243a1132
commit a73fc4b6c5
2 changed files with 2 additions and 2 deletions

View 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 $@ $<

View 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)