Author: wmb Date: Thu Mar 7 09:17:32 2013 New Revision: 3595 URL: http://tracker.coreboot.org/trac/openfirmware/changeset/3595
Log: x86/Linux/Makefile - use different rules for building the two different versions of inflate.o / xinflate.o - one to use in the wrapper, the other for standalone use in OFW images.
Modified: cpu/x86/Linux/Makefile
Modified: cpu/x86/Linux/Makefile ============================================================================== --- cpu/x86/Linux/Makefile Wed Mar 6 20:53:52 2013 (r3594) +++ cpu/x86/Linux/Makefile Thu Mar 7 09:17:32 2013 (r3595) @@ -43,13 +43,13 @@ ${CC} ${MFLAGS} -o $@ ${OBJS} ${LIBS} @ln -sf forth x86forth
-inflate.lo: ${ZIPDIR}/inflate.c +xinflate.lo: ${ZIPDIR}/inflate.c ${CC} -c ${MFLAGS} -Wall -fno-stack-protector -ffreestanding -D_FORTIFY_SOURCE=0 -DNEED_BCOPY -O3 -fpic $< -o $@
-inflate.o: inflate.lo +xinflate.o: xinflate.lo ${LD} -melf_i386 -T inflate.ld $< -o $@
-../build/inflate.bin: inflate.o +../build/inflate.bin: xinflate.o objcopy -O binary $< $@
%.o: ${WRDIR}/%.c