- fixed number of MP table entries (caused FreeBSD 5.3 boot failure)
[gplbios.git] / Makefile.in
blobf9347283cf982102f8258dedeb33ced686bcb078
1 # Copyright (C) 2001 MandrakeSoft S.A.
3 # MandrakeSoft S.A.
4 # 43, rue d'Aboukir
5 # 75002 Paris - France
6 # http://www.linux-mandrake.com/
7 # http://www.mandrakesoft.com/
9 # This library is free software; you can redistribute it and/or
10 # modify it under the terms of the GNU Lesser General Public
11 # License as published by the Free Software Foundation; either
12 # version 2 of the License, or (at your option) any later version.
14 # This library is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 # Lesser General Public License for more details.
19 # You should have received a copy of the GNU Lesser General Public
20 # License along with this library; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 # Makefile for the BIOS component of bochs
26 @SUFFIX_LINE@
28 srcdir = @srcdir@
29 VPATH = @srcdir@
31 SHELL = /bin/sh
33 @SET_MAKE@
35 CXX = @CXX@
36 CXXFLAGS = @CXXFLAGS@
38 LDFLAGS = @LDFLAGS@
39 LIBS = @LIBS@
40 RANLIB = @RANLIB@
42 BCC = bcc
43 GCC = gcc
44 AS86 = as86
46 BX_INCDIRS = -I.. -I$(srcdir)/.. -I../iodev -I$(srcdir)/../iodev
47 LOCAL_CXXFLAGS =
49 BUILDDATE = `date '+%m/%d/%y'`
50 BIOS_BUILD_DATE = "-DBIOS_BUILD_DATE=\"$(BUILDDATE)\""
52 # -------- end configurable options --------------------------
56 .@CPP_SUFFIX@.o:
57 $(CXX) -c $(BX_INCDIRS) $(CXXFLAGS) $(LOCAL_CXXFLAGS) @CXXFP@$< @OFP@$@
60 bios: biossums BIOS-bochs-latest
62 clean:
63 @RMCOMMAND@ *.o *.a *.s _rombios*_.c rombios*.txt rombios*.sym
64 @RMCOMMAND@ usage biossums rombios16.bin
65 @RMCOMMAND@ rombios32.bin rombios32.out
67 dist-clean: clean
68 @RMCOMMAND@ Makefile
70 bios-clean:
71 @RMCOMMAND@ BIOS-bochs-*
73 rombios16.bin: rombios.c apmbios.S biossums
74 $(GCC) $(BIOS_BUILD_DATE) -E -P $< > _rombios_.c
75 $(BCC) -o rombios.s -C-c -D__i86__ -0 -S _rombios_.c
76 sed -e 's/^\.text//' -e 's/^\.data//' rombios.s > _rombios_.s
77 $(AS86) _rombios_.s -b tmp.bin -u- -w- -g -0 -j -O -l rombios.txt
78 -perl ${srcdir}/makesym.perl < rombios.txt > rombios.sym
79 mv tmp.bin rombios16.bin
80 ./biossums rombios16.bin
81 @RMCOMMAND@ _rombios_.s
84 rombios32.bin: rombios32.out
85 objcopy -O binary $< $@
86 ./biossums -pad $@
88 rombios32.out: rombios32start.o rombios32.o rombios32.ld
89 ld -o $@ -T rombios32.ld rombios32start.o rombios32.o
91 rombios32.o: rombios32.c acpi-dsdt.hex
92 $(GCC) -O2 -Wall -c -o $@ $<
94 ifeq ("1", "0")
95 acpi-dsdt.hex: acpi-dsdt.dsl
96 iasl -tc -p $@ $<
97 endif
99 rombios32start.o: rombios32start.S
100 $(GCC) -c -o $@ $<
102 BIOS-bochs-latest: rombios16.bin rombios32.bin
103 cat rombios32.bin rombios16.bin > $@
105 biossums: biossums.c
106 $(GCC) -o biossums biossums.c