Blame SOURCES/0026-add-BUILD_EXEEXT-support-to-fix-make-clean-on-Window.patch

f725e3
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
f725e3
From: Andrey Borzenkov <arvidjaar@gmail.com>
f725e3
Date: Sat, 18 Jan 2014 20:41:24 +0400
f725e3
Subject: [PATCH] add BUILD_EXEEXT support to fix make clean on Windows
f725e3
f725e3
Add $(BUILD_EXEEXT) to ensure files are removed. Also add CLEANFILES where
f725e3
appropriate.
f725e3
---
f725e3
 configure.ac          | 21 ++++++++++++++++-----
f725e3
 Makefile.util.def     |  2 +-
f725e3
 Makefile.am           | 16 ++++++++--------
f725e3
 ChangeLog             |  7 +++++++
f725e3
 grub-core/Makefile.am | 14 ++++++++------
f725e3
 5 files changed, 40 insertions(+), 20 deletions(-)
f725e3
f725e3
diff --git a/configure.ac b/configure.ac
f725e3
index 2e4cf3c2e22..cf3de3be1fc 100644
f725e3
--- a/configure.ac
f725e3
+++ b/configure.ac
f725e3
@@ -38,7 +38,8 @@ AC_CONFIG_AUX_DIR([build-aux])
f725e3
 # We don't want -g -O2 by default in CFLAGS
f725e3
 : ${CFLAGS=""}
f725e3
 
f725e3
-# Checks for host and target systems.
f725e3
+# Checks for build, host and target systems.
f725e3
+AC_CANONICAL_BUILD
f725e3
 AC_CANONICAL_HOST
f725e3
 save_program_prefix="${program_prefix}"
f725e3
 AC_CANONICAL_TARGET
f725e3
@@ -422,6 +423,16 @@ case "$build_os" in
f725e3
   haiku*)				BUILD_LIBM= ;;
f725e3
   *) 					BUILD_LIBM=-lm ;;
f725e3
 esac
f725e3
+
f725e3
+dnl FIXME proper test seems to require too deep dive into Autoconf internals.
f725e3
+dnl For now just list known platforms that we support.
f725e3
+
f725e3
+case "$build_os" in
f725e3
+  cygwin*|mingw32*|mingw64*)		BUILD_EXEEXT=.exe ;;
f725e3
+  *)					BUILD_EXEEXT= ;;
f725e3
+esac
f725e3
+AC_SUBST(BUILD_EXEEXT)
f725e3
+
f725e3
 # For gnulib.
f725e3
 gl_INIT
f725e3
 
f725e3
@@ -765,11 +776,11 @@ if test x"$platform" = xemu ; then
f725e3
     *windows* | *cygwin* | *mingw*)
f725e3
       if test x${target_cpu} = xi386 ; then
f725e3
         grub_cv_target_cc_link_format=-mi386pe;
f725e3
-	TARGET_OBJ2ELF='./build-grub-pe2elf';
f725e3
+	TARGET_OBJ2ELF='./build-grub-pe2elf$(BUILD_EXEEXT)';
f725e3
       fi
f725e3
       if test x${target_cpu} = xx86_64 ; then
f725e3
         grub_cv_target_cc_link_format=-mi386pep;
f725e3
-	TARGET_OBJ2ELF='./build-grub-pep2elf';
f725e3
+	TARGET_OBJ2ELF='./build-grub-pep2elf$(BUILD_EXEEXT)';
f725e3
       fi
f725e3
       TARGET_LDFLAGS="$TARGET_LDFLAGS -Wl,$grub_cv_target_cc_link_format"
f725e3
       ;;
f725e3
@@ -803,10 +814,10 @@ elif test x"$target_cpu" = xi386 || test x"$target_cpu" = xx86_64; then
f725e3
   fi
f725e3
   TARGET_LDFLAGS="$TARGET_LDFLAGS -Wl,$grub_cv_target_cc_link_format"
f725e3
   if test x"$grub_cv_target_cc_link_format" = x-mi386pe ; then
f725e3
-    TARGET_OBJ2ELF='./build-grub-pe2elf';
f725e3
+    TARGET_OBJ2ELF='./build-grub-pe2elf$(BUILD_EXEEXT)';
f725e3
   fi
f725e3
   if test x"$grub_cv_target_cc_link_format" = x-mi386pep ; then
f725e3
-    TARGET_OBJ2ELF='./build-grub-pep2elf';
f725e3
+    TARGET_OBJ2ELF='./build-grub-pep2elf$(BUILD_EXEEXT)';
f725e3
   fi
f725e3
 fi
f725e3
 
f725e3
diff --git a/Makefile.util.def b/Makefile.util.def
f725e3
index 3c99be2b0ca..83df212f412 100644
f725e3
--- a/Makefile.util.def
f725e3
+++ b/Makefile.util.def
f725e3
@@ -708,7 +708,7 @@ script = {
f725e3
   name = grub-fs-tester;
f725e3
   common = tests/util/grub-fs-tester.in;
f725e3
   installdir = noinst;
f725e3
-  dependencies = garbage-gen;
f725e3
+  dependencies = 'garbage-gen$(BUILD_EXEEXT)';
f725e3
 };
f725e3
 
f725e3
 script = {
f725e3
diff --git a/Makefile.am b/Makefile.am
f725e3
index 1bbec0e79d3..aa526f573c3 100644
f725e3
--- a/Makefile.am
f725e3
+++ b/Makefile.am
f725e3
@@ -66,22 +66,22 @@ endif
f725e3
 
f725e3
 starfield_theme_files = $(srcdir)/themes/starfield/blob_w.png $(srcdir)/themes/starfield/boot_menu_c.png $(srcdir)/themes/starfield/boot_menu_e.png $(srcdir)/themes/starfield/boot_menu_ne.png $(srcdir)/themes/starfield/boot_menu_n.png $(srcdir)/themes/starfield/boot_menu_nw.png $(srcdir)/themes/starfield/boot_menu_se.png $(srcdir)/themes/starfield/boot_menu_s.png $(srcdir)/themes/starfield/boot_menu_sw.png $(srcdir)/themes/starfield/boot_menu_w.png $(srcdir)/themes/starfield/slider_c.png $(srcdir)/themes/starfield/slider_n.png $(srcdir)/themes/starfield/slider_s.png $(srcdir)/themes/starfield/starfield.png $(srcdir)/themes/starfield/terminal_box_c.png $(srcdir)/themes/starfield/terminal_box_e.png $(srcdir)/themes/starfield/terminal_box_ne.png $(srcdir)/themes/starfield/terminal_box_n.png $(srcdir)/themes/starfield/terminal_box_nw.png $(srcdir)/themes/starfield/terminal_box_se.png $(srcdir)/themes/starfield/terminal_box_s.png $(srcdir)/themes/starfield/terminal_box_sw.png $(srcdir)/themes/starfield/terminal_box_w.png $(srcdir)/themes/starfield/theme.txt $(srcdir)/themes/starfield/README $(srcdir)/themes/starfield/COPYING.CC-BY-SA-3.0
f725e3
 
f725e3
-build-grub-mkfont: util/grub-mkfont.c grub-core/unidata.c grub-core/kern/emu/misc.c util/misc.c
f725e3
+build-grub-mkfont$(BUILD_EXEEXT): util/grub-mkfont.c grub-core/unidata.c grub-core/kern/emu/misc.c util/misc.c
f725e3
 	$(BUILD_CC) -o $@ -I$(top_srcdir)/include $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) -DGRUB_MKFONT=1 -DGRUB_BUILD=1 -DGRUB_UTIL=1 -DGRUB_BUILD_PROGRAM_NAME=\"build-grub-mkfont\" $^ $(build_freetype_cflags) $(build_freetype_libs)
f725e3
-CLEANFILES += build-grub-mkfont
f725e3
+CLEANFILES += build-grub-mkfont$(BUILD_EXEEXT)
f725e3
 
f725e3
-garbage-gen: util/garbage-gen.c
f725e3
+garbage-gen$(BUILD_EXEEXT): util/garbage-gen.c
f725e3
 	$(BUILD_CC) -o $@ $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS)  $^
f725e3
-CLEANFILES += garbage-gen
f725e3
+CLEANFILES += garbage-gen$(BUILD_EXEEXT)
f725e3
 EXTRA_DIST += util/garbage-gen.c
f725e3
 
f725e3
-build-grub-gen-asciih: util/grub-gen-asciih.c
f725e3
+build-grub-gen-asciih$(BUILD_EXEEXT): util/grub-gen-asciih.c
f725e3
 	$(BUILD_CC) -o $@ -I$(top_srcdir)/include $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) -DGRUB_MKFONT=1 -DGRUB_BUILD=1 -DGRUB_UTIL=1 $^ $(build_freetype_cflags) $(build_freetype_libs) -Wall -Werror
f725e3
-CLEANFILES += build-grub-gen-asciih
f725e3
+CLEANFILES += build-grub-gen-asciih$(BUILD_EXEEXT)
f725e3
 
f725e3
-build-grub-gen-widthspec: util/grub-gen-widthspec.c
f725e3
+build-grub-gen-widthspec$(BUILD_EXEEXT): util/grub-gen-widthspec.c
f725e3
 	$(BUILD_CC) -o $@ -I$(top_srcdir)/include $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) -DGRUB_MKFONT=1 -DGRUB_BUILD=1 -DGRUB_UTIL=1 $^ $(build_freetype_cflags) $(build_freetype_libs) -Wall -Werror
f725e3
-CLEANFILES += build-grub-gen-widthspec
f725e3
+CLEANFILES += build-grub-gen-widthspec$(BUILD_EXEEXT)
f725e3
 
f725e3
 if COND_STARFIELD
f725e3
 starfield_DATA = dejavu_10.pf2 dejavu_12.pf2 dejavu_bold_14.pf2 dejavu_14.pf2 dejavu_16.pf2 $(starfield_theme_files)
f725e3
diff --git a/ChangeLog b/ChangeLog
f725e3
index 5aac7c1d854..dad2da2faef 100644
f725e3
--- a/ChangeLog
f725e3
+++ b/ChangeLog
f725e3
@@ -1,3 +1,10 @@
f725e3
+2014-01-18  Andrey Borzenkov <arvidjaar@gmail.com>
f725e3
+
f725e3
+	* configure.ac: Add support for BUILD_EXEEXT and use it ...
f725e3
+	* Makefile.am: ... here.
f725e3
+	* Makefile.util.def: ... and here.
f725e3
+	* grub-core/Makefile.am: ... and here.
f725e3
+
f725e3
 2014-01-18  Andrey Borzenkov <arvidjaar@gmail.com>
f725e3
 
f725e3
 	* include/grub/osdep/hostfile_windows.h: Use _W64 instead of
f725e3
diff --git a/grub-core/Makefile.am b/grub-core/Makefile.am
f725e3
index 13b7979106f..826b3dd7c1a 100644
f725e3
--- a/grub-core/Makefile.am
f725e3
+++ b/grub-core/Makefile.am
f725e3
@@ -26,20 +26,22 @@ CFLAGS_LIBRARY += $(CFLAGS_PLATFORM) -fno-builtin
f725e3
 CPPFLAGS_LIBRARY += $(CPPFLAGS_PLATFORM)
f725e3
 CCASFLAGS_LIBRARY += $(CCASFLAGS_PLATFORM)
f725e3
 
f725e3
-build-grub-pep2elf: $(top_srcdir)/util/grub-pe2elf.c $(top_srcdir)/grub-core/kern/emu/misc.c $(top_srcdir)/util/misc.c
f725e3
+build-grub-pep2elf$(BUILD_EXEEXT): $(top_srcdir)/util/grub-pe2elf.c $(top_srcdir)/grub-core/kern/emu/misc.c $(top_srcdir)/util/misc.c
f725e3
 	$(BUILD_CC) -o $@ -I$(top_srcdir)/include $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) -DGRUB_BUILD=1 -DGRUB_TARGET_WORDSIZE=64 -DGRUB_UTIL=1 -DGRUB_BUILD_PROGRAM_NAME=\"build-grub-pep2elf\" $^
f725e3
+CLEANFILES += build-grub-pep2elf$(BUILD_EXEEXT)
f725e3
 
f725e3
-build-grub-pe2elf: $(top_srcdir)/util/grub-pe2elf.c $(top_srcdir)/grub-core/kern/emu/misc.c $(top_srcdir)/util/misc.c
f725e3
+build-grub-pe2elf$(BUILD_EXEEXT): $(top_srcdir)/util/grub-pe2elf.c $(top_srcdir)/grub-core/kern/emu/misc.c $(top_srcdir)/util/misc.c
f725e3
 	$(BUILD_CC) -o $@ -I$(top_srcdir)/include $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) -DGRUB_BUILD=1 -DGRUB_TARGET_WORDSIZE=32 -DGRUB_UTIL=1 -DGRUB_BUILD_PROGRAM_NAME=\"build-grub-pe2elf\" $^
f725e3
+CLEANFILES += build-grub-pe2elf$(BUILD_EXEEXT)
f725e3
 
f725e3
 # gentrigtables
f725e3
-gentrigtables: gentrigtables.c
f725e3
+gentrigtables$(BUILD_EXEEXT): gentrigtables.c
f725e3
 	$(BUILD_CC) -o $@ -I$(top_srcdir)/include $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(BUILD_LDFLAGS) $< $(BUILD_LIBM)
f725e3
-CLEANFILES += gentrigtables
f725e3
+CLEANFILES += gentrigtables$(BUILD_EXEEXT)
f725e3
 
f725e3
 # trigtables.c
f725e3
-trigtables.c: gentrigtables gentrigtables.c $(top_srcdir)/configure.ac
f725e3
-	./gentrigtables > $@
f725e3
+trigtables.c: gentrigtables$(BUILD_EXEEXT) gentrigtables.c $(top_srcdir)/configure.ac
f725e3
+	./gentrigtables$(BUILD_EXEEXT) > $@
f725e3
 CLEANFILES += trigtables.c
f725e3
 
f725e3
 # XXX Use Automake's LEX & YACC support