diff --git a/tools/llvmc2/Makefile b/tools/llvmc2/Makefile index 3f35de09178..89a21bcb379 100644 --- a/tools/llvmc2/Makefile +++ b/tools/llvmc2/Makefile @@ -11,7 +11,7 @@ LEVEL = ../.. BUILTIN_PLUGINS = Base DRIVER_NAME = llvmc2 -DIRS = plugins src +DIRS = plugins core export BUILTIN_PLUGINS export DRIVER_NAME diff --git a/tools/llvmc2/src/Action.cpp b/tools/llvmc2/core/Action.cpp similarity index 100% rename from tools/llvmc2/src/Action.cpp rename to tools/llvmc2/core/Action.cpp diff --git a/tools/llvmc2/src/CompilationGraph.cpp b/tools/llvmc2/core/CompilationGraph.cpp similarity index 100% rename from tools/llvmc2/src/CompilationGraph.cpp rename to tools/llvmc2/core/CompilationGraph.cpp diff --git a/tools/llvmc2/src/Error.h b/tools/llvmc2/core/Error.h similarity index 100% rename from tools/llvmc2/src/Error.h rename to tools/llvmc2/core/Error.h diff --git a/tools/llvmc2/src/Makefile b/tools/llvmc2/core/Makefile similarity index 100% rename from tools/llvmc2/src/Makefile rename to tools/llvmc2/core/Makefile diff --git a/tools/llvmc2/src/Plugin.cpp b/tools/llvmc2/core/Plugin.cpp similarity index 100% rename from tools/llvmc2/src/Plugin.cpp rename to tools/llvmc2/core/Plugin.cpp diff --git a/tools/llvmc2/src/llvmc.cpp b/tools/llvmc2/core/llvmc.cpp similarity index 100% rename from tools/llvmc2/src/llvmc.cpp rename to tools/llvmc2/core/llvmc.cpp