mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r2690] Purpose:
Bug fix Description: Non-portable constructs are causing make to fail on some machines. Solution: Replaced ":=" assignments with "=" assignments. Platforms tested: Solaris 2.6 (baldric) & gmake Solaris 2.7 (arabica) & make (a SYSV make) FreeBSD 4.1.1 (hawkwind) & make (a BSD make)
This commit is contained in:
parent
2011215517
commit
f71aa7cb6c
@ -23,18 +23,24 @@ PABLO_FLAGS = -I. -I../src -I$(PABLO_INC) -DHAVE_PABLO $(PABLO_MPIO_FLAGS)
|
||||
## This is our main target:
|
||||
LIB=libhdf5-inst.a
|
||||
|
||||
SRCDIRS := ./. ../src/.
|
||||
#SRCDIRS := ./. ../src/.
|
||||
SRCDIRS = ./. ../src/.
|
||||
# Took out the GNU'isms for the SRCFILES and LIB_SRC variables.
|
||||
# This may cause problems in two ways: any changes to the SRCDIRS variable
|
||||
# should be make to the SRCFILES macro also and the LIB_SRC variable now has
|
||||
# directory paths included in it (which may cause problems somewhere). - QAK
|
||||
#SRCFILES := $(foreach DIR,$(SRCDIRS),$(wildcard $(DIR)/*.c))
|
||||
SRCFILES := *.c ../src/*.c
|
||||
#SRCFILES := *.c ../src/*.c
|
||||
SRCFILES = *.c ../src/*.c
|
||||
#LIB_SRC := $(notdir $(SRCFILES))
|
||||
LIB_SRC := $(SRCFILES)
|
||||
LIB_COBJ := $(LIB_SRC:.c=.o)
|
||||
LIB_FOBJ := PabloHDFff.o
|
||||
LIB_OBJ := $(LIB_FOBJ) $(LIB_COBJ)
|
||||
#LIB_SRC := $(SRCFILES)
|
||||
LIB_SRC = $(SRCFILES)
|
||||
#LIB_COBJ := $(LIB_SRC:.c=.o)
|
||||
LIB_COBJ = $(LIB_SRC:.c=.o)
|
||||
#LIB_FOBJ := PabloHDFff.o
|
||||
LIB_FOBJ = PabloHDFff.o
|
||||
#LIB_OBJ := $(LIB_FOBJ) $(LIB_COBJ)
|
||||
LIB_OBJ = $(LIB_FOBJ) $(LIB_COBJ)
|
||||
|
||||
copy_src:
|
||||
cp ../src/*.c .
|
||||
|
Loading…
x
Reference in New Issue
Block a user