diff options
| author | Karl Schimpf <kschimpf@google.com> | 2013-05-01 10:42:30 -0700 |
|---|---|---|
| committer | Karl Schimpf <kschimpf@google.com> | 2013-05-01 10:42:30 -0700 |
| commit | f42b26d0d46034cb2b91df810477fc0df2e67b27 (patch) | |
| tree | bc8749b8fa6e36670df3171a27d9db2bfab608a7 /lib/Bitcode/NaCl/Reader/Makefile | |
| parent | 595239b2b7297b62d9f804770f5f43d8bf637a0f (diff) | |
Copy LLVM bitcode reader to generate a PNaCl wire format reader.
Copy classes for LLVM BitcodeReader into a NaCl subdirectory, to create a wire
format version. Renames classes/functions to include NaCl prefix, so that
they don't conflict with the LLVM Bitcode reader.
Also implements pnacl-thaw, showing that we can read the PNaCl wire format
files.
BUG= https://code.google.com/p/nativeclient/issues/detail?id=3405
R=jvoung@chromium.org
Review URL: https://codereview.chromium.org/14314016
Diffstat (limited to 'lib/Bitcode/NaCl/Reader/Makefile')
| -rw-r--r-- | lib/Bitcode/NaCl/Reader/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/Bitcode/NaCl/Reader/Makefile b/lib/Bitcode/NaCl/Reader/Makefile new file mode 100644 index 0000000000..92c75c29a4 --- /dev/null +++ b/lib/Bitcode/NaCl/Reader/Makefile @@ -0,0 +1,15 @@ +##===- lib/Bitcode/NaCl/Reader/Makefile --------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +LEVEL = ../../../.. +LIBRARYNAME = LLVMNaClBitReader +BUILD_ARCHIVE = 1 + +include $(LEVEL)/Makefile.common + |
