[ASan] Add a few more malloc-related interceptors for Windows
[blocksruntime.git] / lib / Makefile.mk
blob8394af3a8ace0791de7104d95f11582b675104c5
1 #===- lib/Makefile.mk --------------------------------------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 #===------------------------------------------------------------------------===#
10 ModuleName := builtins
11 SubDirs :=
13 # Add arch specific optimized implementations.
14 SubDirs += i386 ppc x86_64 arm
16 # Add other submodules.
17 SubDirs += asan
18 SubDirs += profile
20 # Define the variables for this specific directory.
21 Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
22 ObjNames := $(Sources:%.c=%.o)
23 Implementation := Generic
25 # FIXME: use automatic dependencies?
26 Dependencies := $(wildcard $(Dir)/*.h)