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

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

#USEDLIBS=DumpTassXML.a

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

LINK_LIBS_IN_SHARED = 0
SHARED_LIBRARY = 1

#
# Include Makefile.common so we know what to do.
#
include $(LEVEL)/Makefile.common
CXX.Flags += -I$(CLANG_OBJ_ROOT)/include -I$(CLANG_SRC_ROOT)/include

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


