1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
|
export SHELL := bash
BUILD_DIR ?= build
HELPERS_DIR := helpers
MKDIR_P := mkdir -p
RMDIR := rmdir
HELPER_DIRS := $(patsubst %/.,%,$(wildcard $(CURDIR)/$(HELPERS_DIR)/*/.))
HELPERS := $(notdir $(HELPER_DIRS))
define HELPER_template =
$(2)_helper: $(1)
$(MKDIR_P) $(BUILD_DIR)/$(HELPERS_DIR)/$(2)
$(MAKE) -C $(BUILD_DIR)/$(HELPERS_DIR)/$(2) \
-f "$$</Makefile" "VPATH=$$<"
$(2)_clean: $(1)
if [ -d $(BUILD_DIR)/$(HELPERS_DIR)/$(2) ]; then \
$(MAKE) -C $(BUILD_DIR)/$(HELPERS_DIR)/$(2) \
-f "$$</Makefile" clean; \
$(RMDIR) $(BUILD_DIR)/$(HELPERS_DIR)/$(2); \
fi
endef
# Targets that will always be run (as they depend on stuff from installed packages)
.PHONY: clean distclean test $(BUILD_DIR)/core.img $(BUILD_DIR)/g2ldr $(BUILD_DIR)/g2ldr.mbr $(BUILD_DIR)/loadlin.pif $(BUILD_DIR)/loadlin.exe $(BUILD_DIR)/pxe.lkrn $(HELPERS:=_helper) $(HELPERS:=_clean)
PACKAGE := win32-loader
VERSION := $(shell head -n 1 debian/changelog | sed -e "s/^$(PACKAGE) (\(.*\)).*/\1/g")
ifndef SOURCE_DATE_EPOCH
SOURCE_DATE_EPOCH := $(shell git log -1 --pretty=%ct 2>/dev/null || LC_ALL=C date +'%s')
export SOURCE_DATE_EPOCH
endif
FOUR_DIGITS_DATE := $(shell date -u +'%Y.%m.%d.%H%M' --date="@$(SOURCE_DATE_EPOCH)")
NSIS_CC := i686-w64-mingw32-gcc -Os -Xlinker --no-insert-timestamp
NSIS_STRIP := i686-w64-mingw32-strip
NSIS_CFLAGS := -Wl,--file-alignment,512 -Werror -D_WIN32_WINNT=0x0500
ICONSIZES := 16,24,32,48,256
# Density calculation:
# The default resolution of 72 dots per inch is used to get the
# equivalent of one point per pixel.
# 108 is the width and height of the SVG.
# 256 is the width and height of the largest icon.
# So density will be (256 * 72) / 108 = 170
DENSITY := 170
# Standard makensis call
MAKENSIS := makensis -V3 "-XUnicode True"
# Add to it some version'ing and date
MAKENSIS += -DVERSION=$(VERSION) -D4DIGITS_DATE=$(FOUR_DIGITS_DATE)
ifndef OUTFILE_NAME
OUTFILE_NAME := $(BUILD_DIR)/win32-loader.exe
endif
MAKENSIS += -D_OUTFILE_NAME=$(OUTFILE_NAME) -DBUILD_DIR=$(BUILD_DIR)
# Distributor/Company name (defaults to "The Debian Project")
ifdef COMPANY_NAME
MAKENSIS += -D_COMPANY_NAME=$(COMPANY_NAME)
endif
# Distribution name (ASCII only, please)
ifdef TARGET_DISTRO
MAKENSIS += -DTARGET_DISTRO=$(TARGET_DISTRO)
endif
# Standalone version : Not linked to a website with preseed.cfg
ifdef STANDALONE
MAKENSIS += -DNOCD=yes
OPTIONS_TXT += +net
endif
# Network version : Linked to a website with preseed.cfg
ifdef NETWORK_BASE_URL
# Embed the sha256sum of the $(NETWORK_BASE_URL)/preseed.cfg file for enhanced security.
MAKENSIS += -DNETWORK_BASE_URL=$(NETWORK_BASE_URL) -DNOCD=yes -DNETWORK_BASE_URL_CHECKSUM=$(NETWORK_BASE_URL_CHECKSUM)
OPTIONS_TXT += +url
endif
# PXE version (which is standalone too)
ifdef PXE
MAKENSIS += -DPXE=yes -DNOCD=yes
OPTIONS_TXT += +pxe
endif
# Disabling the kFreeBSD download
ifndef NOT_ALLKERNELS
MAKENSIS += -DALLKERNELS=yes
OPTIONS_TXT += +kernels
endif
# Allowing the branch selection
ifdef DAILIES
MAKENSIS += -DDAILIES=yes
OPTIONS_TXT += +dailies
endif
ifdef OPTIONS_TXT
MAKENSIS += -DOPTIONS_TXT="$(OPTIONS_TXT)"
endif
# hard disk
GRUB_MODULES += biosdisk
# partmap
GRUB_MODULES += part_msdos part_gpt
# fs
GRUB_MODULES += fat ntfs ntfscomp
# used in our grub.cfg
GRUB_MODULES += search linux bsd multiboot vbe boot
# might be useful for debugging
GRUB_MODULES += minicmd cat cpuid chain halt help ls reboot
# useful for loading files from ISO images
GRUB_MODULES += loopback iso9660
ifndef NOT_ALLKERNELS
# gzio is needed for kFreeBSD
GRUB_MODULES += gzio
endif
ifdef PXE
# Booting the pxe.lkrn requires linux16
GRUB_MODULES += linux16
endif
all: $(OUTFILE_NAME) $(BUILD_DIR)/g2ldr $(BUILD_DIR)/g2ldr.mbr
$(BUILD_DIR):
$(MKDIR_P) $(BUILD_DIR)
$(foreach helper_dir,$(HELPER_DIRS),$(eval $(call HELPER_template,$(helper_dir),$(notdir $(helper_dir)))))
core.img:
grub-mkimage --output=$@ --prefix=/win32-loader --format=i386-pc $(GRUB_MODULES)
$(BUILD_DIR)/g2ldr: /usr/lib/grub/i386-pc/g2hdr.bin core.img | $(BUILD_DIR)
cat $^ > $@
$(BUILD_DIR)/g2ldr.mbr: /usr/lib/grub/i386-pc/g2ldr.mbr | $(BUILD_DIR)
cp $^ $@
$(BUILD_DIR)/loadlin.pif: genpif | $(BUILD_DIR)
bash $^ > $@
$(BUILD_DIR)/loadlin.exe: /usr/lib/loadlin/loadlin.exe.gz | $(BUILD_DIR)
gunzip -c $^ > $@
$(BUILD_DIR)/pxe.lkrn: /usr/lib/ipxe/ipxe.lkrn | $(BUILD_DIR)
cp $^ $@
ifdef PXE
PXE_TARGETS = $(BUILD_DIR)/pxe.lkrn
else
PXE_TARGETS =
endif
templates/gtk.bmp: templates/gtk_orig.png
convert $^ -resize 107x80 BMP3:$@
# Build the icon out of the SVG source
$(BUILD_DIR)/win32-loader.ico: icon/swirl.svg | $(BUILD_DIR)
convert -background none -density $(DENSITY) $^ -depth 8 -colors 256 -dither FloydSteinberg -define png:compression-filter=1 -define png:compression-level=9 -define png:compression-strategy=1 -define icon:auto-resize=$(ICONSIZES) $@
$(OUTFILE_NAME): main.nsi maps.ini \
templates/gtk.bmp templates/text.bmp \
$(PXE_TARGETS) $(BUILD_DIR)/win32-loader.ico \
$(BUILD_DIR)/loadlin.pif $(BUILD_DIR)/loadlin.exe \
$(BUILD_DIR)/g2ldr $(BUILD_DIR)/g2ldr.mbr \
| $(HELPERS:=_helper)
find $(BUILD_DIR) -type f -exec touch --date="@$(SOURCE_DATE_EPOCH)" '{}' ';'
$(MKDIR_P) $(BUILD_DIR)/l10n
$(MAKE) -C $(BUILD_DIR)/l10n -f $(CURDIR)/l10n/Makefile VPATH=$(CURDIR)/l10n
$(MAKENSIS) main.nsi
du -h $(OUTFILE_NAME)
test: $(HELPERS:=_helper)
ifneq ($(shell wine --version 2>&1),)
$(CURDIR)/tests/run.sh $(realpath $(BUILD_DIR)) win32 \
$(realpath $(BUILD_DIR))
ifeq ($(notdir $(shell winepath -u c:/windows/system32 2>/dev/null)),syswow64)
$(CURDIR)/tests/run.sh $(realpath $(BUILD_DIR)) win64 \
$(realpath $(BUILD_DIR))
endif
endif
iso: $(BUILD_DIR)/stable.iso $(BUILD_DIR)/daily.iso
$(BUILD_DIR)/stable.iso: \
$(BUILD_DIR)/netboot/download-stable-stamp \
$(BUILD_DIR)/netboot/stable/win32-loader.exe \
$(BUILD_DIR)/netboot/stable/g2ldr \
$(BUILD_DIR)/netboot/stable/g2ldr.mbr \
$(BUILD_DIR)/netboot/stable/autorun.inf \
$(BUILD_DIR)/netboot/stable/win32-loader.ini \
$(NULL) | $(BUILD_DIR)
genisoimage -r -J -o $@ $(BUILD_DIR)/netboot/stable
$(BUILD_DIR)/daily.iso: \
$(BUILD_DIR)/netboot/download-daily-stamp \
$(BUILD_DIR)/netboot/daily/win32-loader.exe \
$(BUILD_DIR)/netboot/daily/g2ldr $(BUILD_DIR)/netboot/daily/g2ldr.mbr \
$(BUILD_DIR)/netboot/daily/autorun.inf \
$(BUILD_DIR)/netboot/daily/win32-loader.ini \
$(NULL) | $(BUILD_DIR)
genisoimage -r -J -o $@ $(BUILD_DIR)/netboot/daily
BASE_URL=http://deb.debian.org/debian/dists/stable/main
$(BUILD_DIR)/netboot/download-stable-stamp:
$(MKDIR_P) $(BUILD_DIR)/netboot/stable/install.{386,amd}/gtk
wget $(BASE_URL)/installer-i386/current/images/netboot/debian-installer/i386/linux \
-O $(BUILD_DIR)/netboot/stable/install.386/vmlinuz
wget $(BASE_URL)/installer-i386/current/images/netboot/debian-installer/i386/initrd.gz \
-O $(BUILD_DIR)/netboot/stable/install.386/initrd.gz
wget $(BASE_URL)/installer-i386/current/images/netboot/gtk/debian-installer/i386/initrd.gz \
-O $(BUILD_DIR)/netboot/stable/install.386/gtk/initrd.gz
wget $(BASE_URL)/installer-amd64/current/images/netboot/debian-installer/amd64/linux \
-O $(BUILD_DIR)/netboot/stable/install.amd/vmlinuz
wget $(BASE_URL)/installer-amd64/current/images/netboot/debian-installer/amd64/initrd.gz \
-O $(BUILD_DIR)/netboot/stable/install.amd/initrd.gz
wget $(BASE_URL)/installer-amd64/current/images/netboot/gtk/debian-installer/amd64/initrd.gz \
-O $(BUILD_DIR)/netboot/stable/install.amd/gtk/initrd.gz
touch $@
$(BUILD_DIR)/netboot/download-daily-stamp:
$(MKDIR_P) $(BUILD_DIR)/netboot/daily/install.{386,amd}/gtk
wget https://d-i.debian.org/daily-images/i386/daily/netboot/debian-installer/i386/linux \
-O $(BUILD_DIR)/netboot/daily/install.386/vmlinuz
wget https://d-i.debian.org/daily-images/i386/daily/netboot/debian-installer/i386/initrd.gz \
-O $(BUILD_DIR)/netboot/daily/install.386/initrd.gz
wget https://d-i.debian.org/daily-images/i386/daily/netboot/gtk/debian-installer/i386/initrd.gz \
-O $(BUILD_DIR)/netboot/daily/install.386/gtk/initrd.gz
wget https://d-i.debian.org/daily-images/amd64/daily/netboot/debian-installer/amd64/linux \
-O $(BUILD_DIR)/netboot/daily/install.amd/vmlinuz
wget https://d-i.debian.org/daily-images/amd64/daily/netboot/debian-installer/amd64/initrd.gz \
-O $(BUILD_DIR)/netboot/daily/install.amd/initrd.gz
wget https://d-i.debian.org/daily-images/amd64/daily/netboot/gtk/debian-installer/amd64/initrd.gz \
-O $(BUILD_DIR)/netboot/daily/install.amd/gtk/initrd.gz
touch $@
$(BUILD_DIR)/netboot/stable/autorun.inf $(BUILD_DIR)/netboot/daily/autorun.inf: autorun.inf
$(MKDIR_P) $(BUILD_DIR)/netboot/{stable,daily}
todos < $< > $@
$(BUILD_DIR)/netboot/stable/win32-loader.ini $(BUILD_DIR)/netboot/daily/win32-loader.ini: win32-loader.ini
$(MKDIR_P) $(BUILD_DIR)/netboot/{stable,daily}
todos < $< > $@
$(BUILD_DIR)/netboot/stable/win32-loader.exe $(BUILD_DIR)/netboot/daily/win32-loader.exe: $(OUTFILE_NAME)
$(MKDIR_P) $(BUILD_DIR)/netboot/{stable,daily}
cp $^ $@
$(BUILD_DIR)/netboot/stable/% $(BUILD_DIR)/netboot/daily/%: $(BUILD_DIR)/%
$(MKDIR_P) $(BUILD_DIR)/netboot/{stable,daily}
cp $< $@
clean:
if [ -d $(BUILD_DIR)/$(HELPERS_DIR) ]; then \
$(MAKE) $(HELPERS:=_clean); \
$(RMDIR) $(BUILD_DIR)/$(HELPERS_DIR); \
fi
if [ -d $(BUILD_DIR)/l10n ]; then \
$(MAKE) -C $(BUILD_DIR)/l10n \
-f $(CURDIR)/l10n/Makefile clean; \
$(RMDIR) $(BUILD_DIR)/l10n; \
fi
rm -f $(OUTFILE_NAME) \
$(BUILD_DIR)/*.iso $(BUILD_DIR)/*~ $(BUILD_DIR)/*/*~ \
$(BUILD_DIR)/core.img \
$(BUILD_DIR)/g2ldr $(BUILD_DIR)/g2ldr.mbr \
$(BUILD_DIR)/loadlin.pif $(BUILD_DIR)/loadlin.exe \
$(BUILD_DIR)/pxe.lkrn $(BUILD_DIR)/icon/*.png \
$(BUILD_DIR)/win32-loader.ico
if [ -d $(BUILD_DIR)/icon ]; then $(RMDIR) $(BUILD_DIR)/icon; fi
distclean: clean
rm -rf $(BUILD_DIR)/netboot
if [ -d $(BUILD_DIR) ]; then $(RMDIR) $(BUILD_DIR); fi
|