From: John Criswell Date: Tue, 1 Jun 2004 19:04:38 +0000 (+0000) Subject: Added the EXEEXT variable so that Makefiles can figure out what extension X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=e6d468f6f77b52e5ccc4592d1024829d8f5cf70b 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 --- 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