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 | c1d10d67a1b6f27b242208ebb09de1b9b35801b8 (patch) | |
| tree | 92e2bd22f636740ea9a0be9c5db5ef33d4c6a084 /llvm/lib/Bitcode/Writer/Makefile | |
| parent | 1314b9996d5a987c368dd8e6480d45c92e1126cd (diff) | |
| download | bcm5719-llvm-c1d10d67a1b6f27b242208ebb09de1b9b35801b8.tar.gz bcm5719-llvm-c1d10d67a1b6f27b242208ebb09de1b9b35801b8.zip | |
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.
llvm-svn: 36331
Diffstat (limited to 'llvm/lib/Bitcode/Writer/Makefile')
| -rw-r--r-- | llvm/lib/Bitcode/Writer/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/lib/Bitcode/Writer/Makefile b/llvm/lib/Bitcode/Writer/Makefile new file mode 100644 index 00000000000..c87387a3095 --- /dev/null +++ b/llvm/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 + |

