ISOLINUX: support for hybrid mode (CD-ROM/USB key)
[profile/ivi/syslinux.git] / mbr / Makefile
1 ## -----------------------------------------------------------------------
2 ##
3 ##   Copyright 2007-2008 H. Peter Anvin - All Rights Reserved
4 ##
5 ##   This program is free software; you can redistribute it and/or modify
6 ##   it under the terms of the GNU General Public License as published by
7 ##   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 ##   Boston MA 02111-1307, USA; either version 2 of the License, or
9 ##   (at your option) any later version; incorporated herein by reference.
10 ##
11 ## -----------------------------------------------------------------------
12
13 #
14 # Makefile for MBR
15 #
16
17 topdir = ..
18 include $(topdir)/MCONFIG.embedded
19
20 all:    mbr.bin gptmbr.bin isohdpfx.bin
21
22 .PRECIOUS: %.o
23 %.o: %.S
24         $(CC) $(SFLAGS) -Wa,-a=$*.lst -c -o $@ $<
25
26 .PRECIOUS: %.elf
27 %.elf: %.o mbr.ld
28         $(LD) $(LDFLAGS) -T mbr.ld -e _start -o $@ $<
29
30 mbr.bin: mbr.elf checksize.pl
31         $(OBJCOPY) -O binary $< $@
32         $(PERL) checksize.pl mbr.bin 440
33
34 isohdpfx.bin: isohdpfx.elf checksize.pl
35         $(OBJCOPY) -O binary $< $@
36         $(PERL) checksize.pl mbr.bin 432
37
38 mbr_bin.c: mbr.bin
39
40 gptmbr.bin: gptmbr.elf checksize.pl
41         $(OBJCOPY) -O binary $< $@
42         $(PERL) checksize.pl gptmbr.bin 424
43
44 tidy dist:
45         rm -f *.o *.elf *.lst
46
47 clean: tidy
48
49 spotless: clean
50         rm -f *.bin