Makefile: Build both IA-32 and x86_64 by default

This commit is contained in:
Lauri Kenttä
2017-01-07 14:02:51 +02:00
parent 3b0253f6fc
commit ce44c3dcb3

View File

@@ -12,10 +12,9 @@ FILES_H = $(wildcard src/*.h)
GIT_DESCRIBE = $(shell git describe --tags)
CFLAGS += '-DGIT_DESCRIBE=L"$(GIT_DESCRIBE)"'
.PHONY: all default
default: bootx64.efi
all: bootx64.efi bootia32.efi setup.exe
efi: bootx64.efi bootia32.efi
setup: setup.exe
all: efi setup
src/GIT_DESCRIBE.cs: src/Setup.cs $(FILES_C) $(FILES_H)
echo 'public class GIT_DESCRIBE { public static string data = "$(GIT_DESCRIBE)"; }' > $@