Home | History | Annotate | Download | only in blink_gc_plugin
      1 # This file requires the clang build system, at least for now. So to use this
      2 # Makefile, you should execute the following commands to copy this directory
      3 # into a clang checkout:
      4 #
      5 #   cp -R <this directory> third_party/llvm/tools/clang/tools/chrome-plugin
      6 #   cd third_party/llvm/tools/clang/tools/chrome-plugin
      7 #   make
      8 
      9 CLANG_LEVEL := ../..
     10 
     11 # This line is read by update.sh and other scripts in tools/clang/scripts
     12 LIBRARYNAME = BlinkGCPlugin_8
     13 
     14 LINK_LIBS_IN_SHARED = 0
     15 SHARED_LIBRARY = 1
     16 
     17 include $(CLANG_LEVEL)/Makefile
     18 
     19 ifeq ($(OS),Darwin)
     20   LDFLAGS+=-Wl,-undefined,dynamic_lookup
     21 endif
     22