diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -VERSION=1.0-beta5-20231022 +VERSION ?= 1.0-beta5-$(shell date +%Y%m%d) help: @printf "This Makefile simplifies creation of Adélie Linux media.\n\n" @@ -17,6 +17,7 @@ help: @printf "\nYou must set ARCH to a supported architecture.\n" @printf "Note that if you don't set ARCH to the native arch of your host,\nyou probably need qemu-user installed.\n" + @printf '\nVERSION will default to: %s\n' $(VERSION) adelie-inst-firmware-$(ARCH)-$(VERSION).iso: configs/horizon/$(ARCH)-horizon-fw.installfile configs/horizon/firmware.installfile configs/horizon/horizon.installfile configs/arch/$(ARCH).installfile configs/base/base.installfile hscript-image -t iso -o adelie-inst-firmware-$(ARCH)-$(VERSION).iso configs/horizon/$(ARCH)-horizon-fw.installfile |