diff options
author | Chris Lattner <sabre@nondot.org> | 2007-04-22 06:24:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-04-22 06:24:45 +0000 |
commit | fd57cecd2cb3ac726942e0101de6a82dc5a958a6 (patch) | |
tree | c417aebed2cbb209f5bfd37cfa5e3755b6591df0 /lib/Bitcode/Writer/Makefile | |
parent | caee0dccffb77a003681345ab3281bcf8684526c (diff) | |
download | external_llvm-fd57cecd2cb3ac726942e0101de6a82dc5a958a6.zip external_llvm-fd57cecd2cb3ac726942e0101de6a82dc5a958a6.tar.gz external_llvm-fd57cecd2cb3ac726942e0101de6a82dc5a958a6.tar.bz2 |
Initial support for writing bitcode files. This currently only writes types,
the type symtab, and global/function protos, and is missing the important
size optimization, but it is a place to start.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36331 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Writer/Makefile')
-rw-r--r-- | lib/Bitcode/Writer/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Bitcode/Writer/Makefile b/lib/Bitcode/Writer/Makefile new file mode 100644 index 0000000..c87387a --- /dev/null +++ b/lib/Bitcode/Writer/Makefile @@ -0,0 +1,15 @@ +##===- lib/Bitcode/Reader/Makefile -------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file was developed by Chris Lattner and is distributed under +# the University of Illinois Open Source License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../../.. +LIBRARYNAME = LLVMBitWriter +BUILD_ARCHIVE = 1 + +include $(LEVEL)/Makefile.common + |