media/webrtc/trunk/tools/clang/plugins/Makefile

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 # This file requires the clang build system, at least for now. So to use this
michael@0 2 # Makefile, you should execute the following commands to copy this directory
michael@0 3 # into a clang checkout:
michael@0 4 #
michael@0 5 # cp -R <this directory> third_party/llvm/tools/clang/tools/chrome-plugin
michael@0 6 # cd third_party/llvm/tools/clang/tools/chrome-plugin
michael@0 7 # make
michael@0 8
michael@0 9 CLANG_LEVEL := ../..
michael@0 10 LIBRARYNAME = FindBadConstructs
michael@0 11
michael@0 12 LINK_LIBS_IN_SHARED = 0
michael@0 13 SHARED_LIBRARY = 1
michael@0 14
michael@0 15 include $(CLANG_LEVEL)/Makefile
michael@0 16
michael@0 17 ifeq ($(OS),Darwin)
michael@0 18 LDFLAGS=-Wl,-undefined,dynamic_lookup
michael@0 19 endif

mercurial