diff options
author | Paul Jakma <paul.jakma@sun.com> | 2006-02-19 18:59:26 +0000 |
---|---|---|
committer | Paul Jakma <paul.jakma@sun.com> | 2006-02-19 18:59:26 +0000 |
commit | e24f0638e6fc7256580c185a631cbe5549bf7db3 (patch) | |
tree | 5f2b1b58b3b0ed2eee52feb33600785bd44b5304 /solaris/Makefile.am | |
parent | 4528ffa280f93ce64213bd79311dc9d7b3c6a12f (diff) |
[solaris] version depend files, auto-generate. Start zebra when needed.
2006-02-19 Paul Jakma <paul.jakma@sun.com>
* depend.*: renamed to depend.*.in.
* depend.*.in: Add version dependency.
* Makefile.am: Generate depend.* from depend.*.in
Distribute the depend.*.in files rather than the depend.*
files.
* quagga.init.in: Enable zebra if one of the link-state
daemons is started.
Restart method is not required - SMF handles that.
* quagga.xml.in: Remove restart method details.
Diffstat (limited to 'solaris/Makefile.am')
-rw-r--r-- | solaris/Makefile.am | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/solaris/Makefile.am b/solaris/Makefile.am index 82da3145..acccbdbc 100644 --- a/solaris/Makefile.am +++ b/solaris/Makefile.am @@ -1,5 +1,5 @@ # Solaris packages automake file -# $Id: Makefile.am,v 1.6 2005/05/13 07:26:07 paul Exp $ +# $Id: Makefile.am,v 1.7 2006/02/19 18:59:26 paul Exp $ .PHONY: packages @@ -83,6 +83,10 @@ prototype.%: $(srcdir)/prototype.%.in Makefile %.xml: $(srcdir)/%.xml.in Makefile rm -f $@ $(edit) $< > $@ +# use edit to construct the depend files +depend.%: $(srcdir)/depend.%.in Makefile + rm -f $@ + $(edit) $< > $@ # method file (bit like init script) quagga.init: $(srcdir)/quagga.init.in Makefile @@ -102,13 +106,13 @@ quagga.init: $(srcdir)/quagga.init.in Makefile #BUILT_SOURCES = pkginfo.daemons pkginfo.dev pkginfo.doc pkginfo.libs \ # prototype.daemons prototype.dev prototype.doc prototype.libs BUILT_SOURCES = $(pkg_pkginfos) pkginfo.tmpl $(pkg_prototypes) \ - $(pkg_manifests) quagga.init + $(pkg_manifests) $(pkg_depends) quagga.init CLEANFILES := $(BUILT_SOURCES) $(pkg_packages) -EXTRA_DIST := $(pkg_depends) $(pkg_manifests:%=%.in) $(pkg_prototypes:%=%.in) \ +EXTRA_DIST := $(pkg_manifests:%=%.in) $(pkg_prototypes:%=%.in) \ $(pkg_names:%=pkginfo.%.tmpl.in) $(srcdir)/pkginfo.tmpl.in \ - quagga.init.in README.txt + $(pkg_depends:%=%.in) quagga.init.in README.txt pkg-root-install: (cd $(top_builddir) && \ |