summaryrefslogtreecommitdiff
path: root/lib/Makefile.mk
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Makefile.mk')
-rw-r--r--lib/Makefile.mk21
1 files changed, 5 insertions, 16 deletions
diff --git a/lib/Makefile.mk b/lib/Makefile.mk
index f9d7800cc4c42..ed9690d467aab 100644
--- a/lib/Makefile.mk
+++ b/lib/Makefile.mk
@@ -7,27 +7,16 @@
#
#===------------------------------------------------------------------------===#
-ModuleName := builtins
SubDirs :=
-# Add arch specific optimized implementations.
-SubDirs += i386 ppc x86_64 arm
-
-# Add other submodules.
+# Add submodules.
SubDirs += asan
+SubDirs += builtins
+SubDirs += dfsan
SubDirs += interception
+SubDirs += lsan
+SubDirs += msan
SubDirs += profile
SubDirs += sanitizer_common
SubDirs += tsan
-SubDirs += msan
SubDirs += ubsan
-SubDirs += lsan
-SubDirs += dfsan
-
-# Define the variables for this specific directory.
-Sources := $(foreach file,$(wildcard $(Dir)/*.c),$(notdir $(file)))
-ObjNames := $(Sources:%.c=%.o)
-Implementation := Generic
-
-# FIXME: use automatic dependencies?
-Dependencies := $(wildcard $(Dir)/*.h)