comparison Makefile.in @ 4206:57a662852ddc

correct lists of forge packages and dependencies * Makefile.in: Fix of-sparsersb package name. Only include dependencies for forge packages that are built.
author John W. Eaton <jwe@octave.org>
date Fri, 02 Sep 2016 15:10:12 -0400
parents 084a0a865a6b
children 44b1a9b2193e
comparison
equal deleted inserted replaced
4205:460c87427a67 4206:57a662852ddc
436 436
437 OCTAVE_FORGE_BASE_URL := 'http://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases' 437 OCTAVE_FORGE_BASE_URL := 'http://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases'
438 OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows linear-algebra sockets zenity data-smoothing fuzzy-logic-toolkit quaternion fits tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings financial stk splines dataframe lssa queueing ga odepkg interval nan ocs mapping tisean video zeromq) 438 OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows linear-algebra sockets zenity data-smoothing fuzzy-logic-toolkit quaternion fits tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings financial stk splines dataframe lssa queueing ga odepkg interval nan ocs mapping tisean video zeromq)
439 ifeq ($(ENABLE_64),no) 439 ifeq ($(ENABLE_64),no)
440 ## This package does not work properly with 64-bit indexing 440 ## This package does not work properly with 64-bit indexing
441 OCTAVE_FORGE_PACKAGES += sparsersb 441 OCTAVE_FORGE_PACKAGES += of-sparsersb
442 endif 442 endif
443 # get ALL deps for all of- packages, regardless of whethe building the actual forge package in the installer 443 # get ALL deps for all of- packages, regardless of whether building the actual forge package in the installer
444 OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(wildcard $(TOP_DIR)/src/of-*.mk),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p))) 444 OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(addprefix $(TOP_DIR)/src/,$(addsuffix .mk,$(OCTAVE_FORGE_PACKAGES))),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p)))
445 445
446 BLAS_PACKAGES := blas 446 BLAS_PACKAGES := blas
447 ifeq ($(ENABLE_OPENBLAS),yes) 447 ifeq ($(ENABLE_OPENBLAS),yes)
448 BLAS_PACKAGES += openblas 448 BLAS_PACKAGES += openblas
449 endif 449 endif