comparison binary-dist-rules.mk @ 3721:933b99febcf1

Expand options to support 3 possible sources of octave * configure.ac: modify --enable-stable rule to --enable-octave=source (stable,alpha,default) * Makefile.am: modify OCTAVE_TARGET based on octave build value set in configure. * index.html: added master-octave information. * src/default-octave.mk: new file. * src/default-octave-1-docinstall.patch * dist-files.mk: add default-octave-1-docinstall.patch default-octave.mk * binary-dist-rules.mk: use OCTAVE_TARGET to decide on tarball/installer name
author John Donoghue <john.donoghue@ieee.org>
date Sun, 19 Oct 2014 22:58:20 -0400
parents 70480095b6ed
children 6daa158a7018
comparison
equal deleted inserted replaced
3720:5d0ed3ca5910 3721:933b99febcf1
1 1
2 ifeq ($(STABLE_BUILD),yes) 2 ifeq ($(OCTAVE_TARGET),stable-octave)
3 OCTAVE_DIST_NAME := octave-$($(OCTAVE_TARGET)_VERSION) 3 OCTAVE_DIST_NAME := octave-$($(OCTAVE_TARGET)_VERSION)
4 else 4 else
5 OCTAVE_DIST_NAME := octave-$(DATE) 5 OCTAVE_DIST_NAME := octave-$(DATE)
6 endif 6 endif
7 7