From 134f02d0c78a667d6a262bc1dbb202cd2687a89f Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 11 Jan 2005 04:33:32 +0000 Subject: [PATCH] Add the LOADABLE_MODULE=1 directive to indicate that this shared library is intended to be a dlopenable module and not a "plain" shared library. llvm-svn: 19456 --- llvm/lib/Transforms/Hello/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/Transforms/Hello/Makefile b/llvm/lib/Transforms/Hello/Makefile index d9886a95e558..ccd9caff16a6 100644 --- a/llvm/lib/Transforms/Hello/Makefile +++ b/llvm/lib/Transforms/Hello/Makefile @@ -10,6 +10,7 @@ LEVEL = ../../.. LIBRARYNAME = LLVMHello SHARED_LIBRARY = 1 +LOADABLE_MODULE = 1 include $(LEVEL)/Makefile.common