comparison Makefile.am @ 22076:d9643bc3792a

build: minor correction to workaround rule to build libgnu.la (bug #45578) * Makefile.am (libgnu/libgnu.la): Use && to propagate return status of 'cd'. Include $(AM_MAKEFLAGS) placeholder variable for project-wide make options.
author Mike Miller <mtmiller@octave.org>
date Thu, 07 Jul 2016 19:06:09 -0700
parents 21c12b837089
children 6119019d42f6
comparison
equal deleted inserted replaced
22075:7a4897e07727 22076:d9643bc3792a
227 # This is only a partial solution which works when 'make all' is used. 227 # This is only a partial solution which works when 'make all' is used.
228 # See bug #45578. 228 # See bug #45578.
229 BUILT_SOURCES += libgnu/libgnu.la 229 BUILT_SOURCES += libgnu/libgnu.la
230 230
231 libgnu/libgnu.la: oct-conf-post.h 231 libgnu/libgnu.la: oct-conf-post.h
232 cd libgnu; $(MAKE) all 232 cd libgnu && $(MAKE) $(AM_MAKEFLAGS) all
233 233
234 include liboctave/module.mk 234 include liboctave/module.mk
235 include libinterp/module.mk 235 include libinterp/module.mk
236 include libgui/module.mk 236 include libgui/module.mk
237 include src/module.mk 237 include src/module.mk