From e6d468f6f77b52e5ccc4592d1024829d8f5cf70b Mon Sep 17 00:00:00 2001 From: John Criswell Date: Tue, 1 Jun 2004 19:04:38 +0000 Subject: [PATCH] Added the EXEEXT variable so that Makefiles can figure out what extension to put on executable files. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13925 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.config.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.config.in b/Makefile.config.in index 889fb2a4e1e..3b554c25f39 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -133,6 +133,9 @@ PAPIDIR := @PAPIDIR@ # Shared library extension for this platform. SHLIBEXT = @SHLIBEXT@ +# Executable file extension for this platform. +EXEEXT = @EXEEXT@ + ########################################################################### # Directory Configuration # This section of the Makefile determines what is where. To be -- 2.34.1