#
# evio C++ library
#

ifndef BMS_HOME
  $(error "Need to define BMS_HOME")
endif

ifeq ($(BMS_OS), vxworks)
  $(error "This makefile is for unix, use Makefile.vxworks-ppc")
endif

# Setting TOPLEVEL tells Makefile.common where to find Makefile.local
# and to include it if make is run from this dir or the top-level package
# directory.
TOPLEVEL = ../..

PACKAGES = expat

MODULE_NAME = evioxx

CFLAGS   += -I../libsrc
CXXFLAGS += -I../libsrc

# if you don't want either of these libs, comment out the definition(s)
MAKE_SHARED_LIB = make_me_please
MAKE_STATIC_LIB = make_me_please

# Things common to all builds live in Makefile.common
include $(BMS_HOME)/Makefile.common

# Things common to building libraries live in Makefile.libs
include $(BMS_HOME)/Makefile.libs
