diff options
author | John Criswell <criswell@uiuc.edu> | 2004-06-01 19:04:38 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2004-06-01 19:04:38 +0000 |
commit | e6d468f6f77b52e5ccc4592d1024829d8f5cf70b (patch) | |
tree | 8c5fee14ace6cadcdddb05c1f28d8fd4663e6f7d | |
parent | 7ce62cc236f887cbb0706d970239a76485ff299a (diff) |
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
-rw-r--r-- | Makefile.config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 889fb2a4e1..3b554c25f3 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 |