diff options
author | Chris Lattner <sabre@nondot.org> | 2004-05-23 21:25:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-05-23 21:25:59 +0000 |
commit | e6fd7762c5a641b185566c770b0291b6da4a0fe3 (patch) | |
tree | 5f01429c9f267ddff929c8ecb8b85c95a33e0ec4 /runtime/GC/Makefile | |
parent | 0bd34a2b6459ff513586ac9f5a839df87f57765b (diff) | |
download | external_llvm-e6fd7762c5a641b185566c770b0291b6da4a0fe3.zip external_llvm-e6fd7762c5a641b185566c770b0291b6da4a0fe3.tar.gz external_llvm-e6fd7762c5a641b185566c770b0291b6da4a0fe3.tar.bz2 |
Initial checkin of GC implementation support files
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13700 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/GC/Makefile')
-rw-r--r-- | runtime/GC/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/runtime/GC/Makefile b/runtime/GC/Makefile new file mode 100644 index 0000000..78b951f --- /dev/null +++ b/runtime/GC/Makefile @@ -0,0 +1,20 @@ +##===- runtime/GC/Makefile ---------------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file was developed by the LLVM research group and is distributed under +# the University of Illinois Open Source License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../.. +PARALLEL_DIRS := SemiSpace + +include $(LEVEL)/Makefile.common + +# Install target for libraries: Copy into the gcc install directory in chris's +# tree... +# +install:: + +clean:: |