diff options
author | H. Peter Anvin <hpa@zytor.com> | 2006-08-28 00:28:31 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2006-08-28 00:28:31 -0700 |
commit | 185b1c3a6c1f3ba8566507f1d8fe555480495a9c (patch) | |
tree | a7d8b1cad0ba798617ceec4b783f3937c23a8b54 /com32/lib/Makefile | |
parent | b76cbd9c17c8001bdba243dffe6df0199b2cf049 (diff) | |
download | syslinux-185b1c3a6c1f3ba8566507f1d8fe555480495a9c.tar.gz syslinux-185b1c3a6c1f3ba8566507f1d8fe555480495a9c.tar.xz syslinux-185b1c3a6c1f3ba8566507f1d8fe555480495a9c.zip |
More work on VESA graphical console support
Diffstat (limited to 'com32/lib/Makefile')
-rw-r--r-- | com32/lib/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/com32/lib/Makefile b/com32/lib/Makefile index 0f65852c..cfbeeb22 100644 --- a/com32/lib/Makefile +++ b/com32/lib/Makefile @@ -33,6 +33,9 @@ LIBOBJS = \ sys/null_read.o sys/null_write.o sys/serial_write.o \ sys/ansicon_write.o sys/ansiserial_write.o \ \ + sys/vesa/initvesa.o sys/vesa/alphatbl.o sys/vesa/drawtxt.o \ + sys/vesa/background.o \ + \ pci/cfgtype.o \ pci/readb.o pci/readw.o pci/readl.o pci/readbios.o \ pci/writeb.o pci/writew.o pci/writel.o pci/writebios.o \ @@ -61,7 +64,7 @@ libcom32.a : $(LIBOBJS) $(RANLIB) $@ tidy: - rm -f *.o .*.d */*.o */.*.d + rm -f *.o .*.d */*.o */.*.d lib/sys/vesa/alphatbl.c clean: tidy rm -f *.a @@ -75,4 +78,9 @@ install: all -rm -rf $(INSTALLROOT)$(COM32DIR)/include cp -r ../include $(INSTALLROOT)$(COM32DIR) +sys/vesa/alphatbl.o: sys/vesa/alphatbl.c + +sys/vesa/alphatbl.c: sys/vesa/alphatbl.pl + $(PERL) $< > $@ || ( rm -f $@ ; exit 1 ) + -include .*.d */.*.d |