aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-04-26 23:17:49 -0400
committerKevin O'Connor <kevin@koconnor.net>2009-04-26 23:17:49 -0400
commit592323fdb2de5ff4b546d24109070c7614c7ad2b (patch)
tree389e3b4fd723d136781e71025d8131a8d7bc7ba7 /Makefile
parent214f6c2d4cedc84227b7ea453712ab9ddb373d0c (diff)
downloadseabios-hppa-592323fdb2de5ff4b546d24109070c7614c7ad2b.zip
seabios-hppa-592323fdb2de5ff4b546d24109070c7614c7ad2b.tar.gz
seabios-hppa-592323fdb2de5ff4b546d24109070c7614c7ad2b.tar.bz2
Add LZMA decompression support to CBFS.
Support payloads compressed with lzma.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 19e63d4..e079f12 100644
--- a/Makefile
+++ b/Makefile
@@ -13,7 +13,8 @@ SRCBOTH=output.c util.c floppy.c ata.c misc.c mouse.c kbd.c pci.c \
pnpbios.c pirtable.c
SRC16=$(SRCBOTH) system.c disk.c apm.c pcibios.c vgahooks.c font.c
SRC32=$(SRCBOTH) post.c shadow.c memmap.c coreboot.c boot.c \
- acpi.c smm.c mptable.c smbios.c pciinit.c optionroms.c mtrr.c
+ acpi.c smm.c mptable.c smbios.c pciinit.c optionroms.c mtrr.c \
+ lzmadecode.c
cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \
/dev/null 2>&1`"; then echo "$(2)"; else echo "$(3)"; fi ;)