diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-31 22:54:28 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-31 22:54:28 +0000 |
commit | bbf7a8af5a7781cf0f721770ab81333f22c0f464 (patch) | |
tree | 894c186b98cbd1880660359d0986305b0a5f51ee /Makefile.config.in | |
parent | e0a7dddf3931be2901b48f4b1b5ad0fa74fae54f (diff) |
For PR351:
Make LLVM_ON_UNIX and LLVM_ON_WIN32 available in the makefiles
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19205 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index ee77f879c5..a1983ab862 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -27,6 +27,10 @@ LLVM_MANDIR := @LLVM_MANDIR@ LLVM_CONFIGTIME := @LLVM_CONFIGTIME@ LLVM_TARBALL_NAME := @PACKAGE_NAME@-@PACKAGE_VERSION@ +# Determine if we're on a unix type operating system +LLVM_ON_UNIX:=@LLVM_ON_UNIX@ +LLVM_ON_WIN32:=@LLVM_ON_WIN32@ + # Target operating system for which LLVM will be compiled. OS=@OS@ |