##===- projects/sample/lib/sample/Makefile -----------------*- Makefile -*-===##

#
# Indicate where we are relative to the top of the source tree.
#
LEVEL=../..

USEDLIBS= 

#
# Give the name of a library.  This will build a dynamic version.
#
LIBRARYNAME=PrintTassAST

LINK_LIBS_IN_SHARED = 0
SHARED_LIBRARY = 1

#
# Include Makefile.common so we know what to do.
#
include $(LEVEL)/Makefile.common
CXX.Flags += -I$(LLVM_OBJ_ROOT)/tools/clang/include -I$(LLVM_SRC_ROOT)/tools/clang/include

ifeq ($(OS),Darwin)
  LDFLAGS=-Wl,-undefined,dynamic_lookup
endif


