~ubuntu-branches/debian/wheezy/vgabios/wheezy

« back to all changes in this revision

Viewing changes to .pc/03-Add-qemu-stdvga-pci-bios/Makefile

  • Committer: Package Import Robot
  • Author(s): Guillem Jover
  • Date: 2011-11-01 00:57:42 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20111101005742-0upqeej55wzvdrpq
Tags: 0.7a-1
* New upstream release.
  - debian/patches/01-Makefile-cleanup: Remove, merged upstream.
  - debian/patches/02-Add-defines-for-PCI-IDs: Likewise.
  - debian/patches/03-Add-qemu-stdvga-pci-bios: Likewise.
  - debian/patches/04-update-pci_get_lfb_addr-for-vmware-vga: Likewise.
  - debian/patches/05-Add-qemu-vmware-vga-pci-bios: Refreshed.
  - debian/patches/06-Add-qemu-qxl-vga-pci-bios: Likewise.
* Add compatibility symlinks from stdvga vgabios to the default vgabios
  ROM, as the latter is now exactly the same as the former.
* Now using Standards-Version 3.9.2 (no changes needed).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SHELL = /bin/sh
2
 
 
3
 
CC      = gcc
4
 
CFLAGS  = -g -O2 -Wall -Wstrict-prototypes
5
 
LDFLAGS = 
6
 
 
7
 
GCC = gcc
8
 
BCC = bcc
9
 
AS86 = as86
10
 
 
11
 
RELEASE = `pwd | sed "s-.*/--"`
12
 
RELDATE = `date '+%d %b %Y'`
13
 
RELVERS = `pwd | sed "s-.*/--" | sed "s/vgabios//" | sed "s/-//"`
14
 
 
15
 
VGABIOS_DATE = "-DVGABIOS_DATE=\"$(RELDATE)\""
16
 
 
17
 
all: bios cirrus-bios
18
 
 
19
 
bios: vgabios.bin vgabios.debug.bin
20
 
 
21
 
cirrus-bios: vgabios-cirrus.bin vgabios-cirrus.debug.bin
22
 
 
23
 
clean:
24
 
        /bin/rm -f  biossums vbetables-gen vbetables.h *.o *.s *.ld86 \
25
 
          temp.awk.* vgabios*.orig _vgabios_* _vgabios-debug_* core vgabios*.bin vgabios*.txt $(RELEASE).bin *.bak
26
 
 
27
 
dist-clean: clean
28
 
 
29
 
# source files
30
 
VGA_FILES := vgabios.c vgabios.h vgafonts.h vgatables.h
31
 
VBE_FILES := vbe.h vbe.c vbetables.h
32
 
 
33
 
# build flags
34
 
vgabios.bin              : VGAFLAGS := -DVBE -DPCI_VID=0x1234
35
 
vgabios.debug.bin        : VGAFLAGS := -DVBE -DPCI_VID=0x1234 -DDEBUG
36
 
vgabios-cirrus.bin       : VGAFLAGS := -DCIRRUS -DPCIBIOS 
37
 
vgabios-cirrus.debug.bin : VGAFLAGS := -DCIRRUS -DPCIBIOS -DCIRRUS_DEBUG
38
 
 
39
 
# dist names
40
 
vgabios.bin              : DISTNAME := VGABIOS-lgpl-latest.bin
41
 
vgabios.debug.bin        : DISTNAME := VGABIOS-lgpl-latest.debug.bin
42
 
vgabios-cirrus.bin       : DISTNAME := VGABIOS-lgpl-latest.cirrus.bin
43
 
vgabios-cirrus.debug.bin : DISTNAME := VGABIOS-lgpl-latest.cirrus.debug.bin
44
 
 
45
 
# dependencies
46
 
vgabios.bin              : $(VGA_FILES) $(VBE_FILES) biossums
47
 
vgabios.debug.bin        : $(VGA_FILES) $(VBE_FILES) biossums
48
 
vgabios-cirrus.bin       : $(VGA_FILES) clext.c biossums
49
 
vgabios-cirrus.debug.bin : $(VGA_FILES) clext.c biossums
50
 
 
51
 
# build rule
52
 
%.bin:
53
 
        $(GCC) -E -P vgabios.c $(VGABIOS_VERS) $(VGAFLAGS) $(VGABIOS_DATE) > _$*_.c
54
 
        $(BCC) -o $*.s -C-c -D__i86__ -S -0 _$*_.c
55
 
        sed -e 's/^\.text//' -e 's/^\.data//' $*.s > _$*_.s
56
 
        $(AS86) _$*_.s -b $*.bin -u -w- -g -0 -j -O -l $*.txt
57
 
        rm -f _$*_.s _$*_.c $*.s
58
 
        mv $*.bin $(DISTNAME)
59
 
        ./biossums $(DISTNAME)
60
 
        ls -l $(DISTNAME)
61
 
 
62
 
release: 
63
 
        VGABIOS_VERS=\"-DVGABIOS_VERS=\\\"$(RELVERS)\\\"\" make bios cirrus-bios
64
 
        /bin/rm -f  *.o *.s *.ld86 \
65
 
          temp.awk.* vgabios.*.orig _vgabios_.*.c core *.bak .#*
66
 
        cp VGABIOS-lgpl-latest.bin ../$(RELEASE).bin
67
 
        cp VGABIOS-lgpl-latest.debug.bin ../$(RELEASE).debug.bin
68
 
        cp VGABIOS-lgpl-latest.cirrus.bin ../$(RELEASE).cirrus.bin
69
 
        cp VGABIOS-lgpl-latest.cirrus.debug.bin ../$(RELEASE).cirrus.debug.bin
70
 
        tar czvf ../$(RELEASE).tgz --exclude CVS -C .. $(RELEASE)/
71
 
 
72
 
biossums: biossums.c
73
 
        $(CC) -o biossums biossums.c
74
 
 
75
 
vbetables-gen: vbetables-gen.c
76
 
        $(CC) -o vbetables-gen vbetables-gen.c
77
 
 
78
 
vbetables.h: vbetables-gen
79
 
        ./vbetables-gen > $@