From 0b0630530c95b57042463ebd9d2741b94fb9d4dc Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 7 Mar 2002 18:54:01 -0500 Subject: [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 --- pablo/Makefile.in | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pablo/Makefile.in b/pablo/Makefile.in index 5e1fbab..9571d48 100644 --- a/pablo/Makefile.in +++ b/pablo/Makefile.in @@ -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) +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=-I. -I$(top_srcdir)/src -DH5_DEBUG_API -DNDEBUG $(PABLO_FLAGS) \ - -D$(PABLO_BLD)_BUILD @CPPFLAGS@ +CPPFLAGS=$(PABLO_FLAGS) @CPPFLAGS@ ## This is our main target: LIB=libhdf5-inst.a -- cgit v0.12