From: Yaakov Selkowitz <[email protected]> On Cygwin and MinGW, executables use the .exe suffix. Autoconf and automake set EXEEXT on these platforms, and leave it empty on others where no suffix is used. $(EXEEXT) must be appended to executable names in custom rules for portability:
http://www.gnu.org/software/automake/manual/html_node/EXEEXT.html Signed-off-by: Yaakov Selkowitz <[email protected]> --- hw/dmx/Makefile.am | 2 +- hw/vfb/Makefile.am | 2 +- hw/xnest/Makefile.am | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/dmx/Makefile.am b/hw/dmx/Makefile.am index 3c59320..1e3e5da 100644 --- a/hw/dmx/Makefile.am +++ b/hw/dmx/Makefile.am @@ -114,4 +114,4 @@ SUFFIXES = .$(APP_MAN_SUFFIX) .man EXTRA_DIST = $(appman_PRE) relink: - rm -f Xdmx && $(MAKE) Xdmx + rm -f Xdmx$(EXEEXT) && $(MAKE) Xdmx$(EXEEXT) diff --git a/hw/vfb/Makefile.am b/hw/vfb/Makefile.am index c5b49a3..c6601c2 100644 --- a/hw/vfb/Makefile.am +++ b/hw/vfb/Makefile.am @@ -49,4 +49,4 @@ SUFFIXES += .$(APP_MAN_SUFFIX) .man EXTRA_DIST = Xvfb.man.pre relink: - rm -f Xvfb && $(MAKE) Xvfb + rm -f Xvfb$(EXEEXT) && $(MAKE) Xvfb$(EXEEXT) diff --git a/hw/xnest/Makefile.am b/hw/xnest/Makefile.am index f95aab1..3e97490 100644 --- a/hw/xnest/Makefile.am +++ b/hw/xnest/Makefile.am @@ -89,4 +89,4 @@ SUFFIXES += .$(APP_MAN_SUFFIX) .man $(LN_S) $< $@ relink: - rm -f Xnest && $(MAKE) Xnest + rm -f Xnest$(EXEEXT) && $(MAKE) Xnest$(EXEEXT) -- 1.6.6.1 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
