Author: stepan Date: 2009-04-05 00:55:49 +0200 (Sun, 05 Apr 2009) New Revision: 4072
Modified: trunk/coreboot-v2/util/romtool/Makefile trunk/coreboot-v2/util/romtool/tools/Makefile Log: Makefile includes were mixed up.
Signed-off-by: Stefan Reinauer stepan@coresystems.de Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: trunk/coreboot-v2/util/romtool/Makefile =================================================================== --- trunk/coreboot-v2/util/romtool/Makefile 2009-04-04 22:27:10 UTC (rev 4071) +++ trunk/coreboot-v2/util/romtool/Makefile 2009-04-04 22:55:49 UTC (rev 4072) @@ -21,7 +21,7 @@ tobj = $(obj)/tools tsrc = $(shell pwd)/tools
-include tools/Makefile +include $(tsrc)/Makefile
$(obj)/%.o: %.c $(INC) $(CC) $(CFLAGS) -c -o $@ $<
Modified: trunk/coreboot-v2/util/romtool/tools/Makefile =================================================================== --- trunk/coreboot-v2/util/romtool/tools/Makefile 2009-04-04 22:27:10 UTC (rev 4071) +++ trunk/coreboot-v2/util/romtool/tools/Makefile 2009-04-04 22:55:49 UTC (rev 4072) @@ -5,7 +5,7 @@
tools: $(tobj)/rom-mkstage $(tobj)/rom-mkpayload
-include $(tobj)/lzma/Makefile +include $(tsrc)/lzma/Makefile
COMMON = common.o compress.o $(LZMA_OBJ)