In the current Lua.c32 DMI implementation, it is a flat table with dotted names in...
[syslinux.git] / libinstaller / Makefile
blobe67a46860cc737a04e147dcdc22f3f34ded00b05
1 # _bin.c files required by both BTARGET and ITARGET installers
2 BINFILES = bootsect_bin.c ldlinux_bin.c \
3 mbr_bin.c gptmbr_bin.c
5 PERL = perl
7 all: $(BINFILES)
9 bootsect_bin.c: ../core/ldlinux.bss bin2c.pl
10 $(PERL) bin2c.pl syslinux_bootsect < $< > $@
12 ldlinux_bin.c: ../core/ldlinux.sys bin2c.pl
13 $(PERL) bin2c.pl syslinux_ldlinux 512 < $< > $@
15 mbr_bin.c: ../mbr/mbr.bin bin2c.pl
16 $(PERL) bin2c.pl syslinux_mbr < $< > $@
18 gptmbr_bin.c: ../mbr/gptmbr.bin bin2c.pl
19 $(PERL) bin2c.pl syslinux_gptmbr < $< > $@
21 tidy:
22 rm -f $(BINFILES)
24 clean: tidy
26 dist: tidy
28 spotless: clean
30 strip: