[svn-r5049] Purpose:

Bug Fix
Description:
	Needed more -I flags to catch some of the include files.
Solution:
	Added them. Cleaned up the way include files and -D defines were
	specified in the Makefile.
Platforms tested:
	Linux
This commit is contained in:
Bill Wendling 2002-03-07 18:54:01 -05:00
parent 6ab96eaf7a
commit 0b0630530c

View File

@ -19,11 +19,14 @@ TRACE=$(PERL) $(top_srcdir)/bin/trace
## PABLO_MPIO_FLAGS.
###############################################################################
PARALLEL_PABLO=@PARALLEL_PABLO@
PABLO_MPIO_FLAGS=${PARALLEL_PABLO:yes=-DH5_HAVE_PARALLEL -DH5_HAVE_MPIOTRACE}
PABLO_FLAGS=-I$(top_srcdir)/src -DH5_HAVE_PABLO $(PABLO_MPIO_FLAGS)
CPPFLAGS=-I. -I$(top_srcdir)/src -DH5_DEBUG_API -DNDEBUG $(PABLO_FLAGS) \
-D$(PABLO_BLD)_BUILD @CPPFLAGS@
PABLO_MPIO_FLAGS=${PARALLEL_PABLO:yes=-DH5_HAVE_PARALLEL -DH5_HAVE_MPIOTRACE}
PABLO_INC=-I$(top_srcdir)/src -I$(top_srcdir)/pablo -I$(top_builddir)/src -I.
PABLO_DEFS=-DH5_HAVE_PABLO -DH5_DEBUG_API -DNDEBUG -D$(PABLO_BLD)_BUILD
PABLO_FLAGS=$(PABLO_DEFS) $(PABLO_MPIO_FLAGS) $(PABLO_INC)
CPPFLAGS=$(PABLO_FLAGS) @CPPFLAGS@
## This is our main target:
LIB=libhdf5-inst.a