xref: /haiku/build/jam/images/CDBootImage (revision a3e794ae459fec76826407f8ba8c94cd3535f128)
1# This file defines what ends up in the CD boot image and it executes the
2# rules building the image.
3
4#HAIKU_BOOT_FLOPPY = haiku-boot-floppy.image ;
5#MakeLocate $(HAIKU_BOOT_FLOPPY) : $(HAIKU_OUTPUT_DIR) ;
6
7# CD image target
8HAIKU_CD_BOOT_IMAGE = haiku-boot-cd.iso ;
9MakeLocate $(HAIKU_CD_BOOT_IMAGE) : $(HAIKU_OUTPUT_DIR) ;
10
11# the pseudo target all archive contents is attached to
12NotFile $(HAIKU_CD_BOOT_IMAGE_CONTAINER_NAME) ;
13
14# extra files to put on the boot iso
15local extras = README.html ;
16SEARCH on $(extras) = [ FDirName $(HAIKU_TOP) data boot_cd ] ;
17
18BuildCDBootImage $(HAIKU_CD_BOOT_IMAGE) : $(HAIKU_BOOT_FLOPPY) : $(extras) ;
19
20
21NotFile haiku-boot-cd ;
22Depends haiku-boot-cd : $(HAIKU_CD_BOOT_IMAGE) ;
23
24
25