Changeset 1015
- Timestamp:
- 05/29/06 15:33:57 (6 years ago)
- Files:
-
- people/ilmari/modularisation-branch (modified) (1 prop)
- people/ilmari/modularisation-branch/Makefile (modified) (4 diffs)
- people/ilmari/modularisation-branch/node/node.d/env.in (added)
- people/ilmari/modularisation-branch/node/node.d/id.in (added)
- people/ilmari/modularisation-branch/t (added)
- people/ilmari/modularisation-branch/t/Makefile.config (added)
- people/ilmari/modularisation-branch/t/munin-run.t (added)
- people/ilmari/modularisation-branch/t/plugin-conf.d (added)
- people/ilmari/modularisation-branch/t/plugin-conf.d/env (added)
- people/ilmari/modularisation-branch/t/plugin-conf.d/id (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
people/ilmari/modularisation-branch
- Property svn:ignore set to
*-stamp
build
- Property svn:ignore set to
people/ilmari/modularisation-branch/Makefile
r1013 r1015 75 75 test -f "$(CONFDIR)/munin-node.conf" || $(INSTALL) -m 0644 build/node/munin-node.conf $(CONFDIR)/ 76 76 $(INSTALL) -m 0755 build/node/munin-run $(SBINDIR)/ 77 77 78 78 install-node-plugins: build 79 79 for p in build/node/node.d.$(OSTYPE)/* build/node/node.d/*; do \ … … 217 217 tar -C .. --dereference --exclude .svn -cvzf ../munin-$(RELEASE).tar.gz munin-$(VERSION)/ 218 218 (cd ..; rpmbuild -tb munin-$(RELEASE).tar.gz) 219 219 220 220 rpm-src: rpm-pre 221 221 tar -C .. --dereference --exclude .svn -cvzf ../munin-$(RELEASE).tar.gz munin-$(VERSION)/ … … 251 251 -rm -f build-doc-stamp 252 252 -rm -f build-man-stamp 253 -rm -rf t/install 253 254 254 255 -rm -f dists/redhat/munin.spec … … 258 259 tar -C .. --dereference --exclude .svn -cvzf ../munin_$(RELEASE).tar.gz munin-$(VERSION)/ 259 260 260 .PHONY: install install-main install-node install-doc install-man build build-doc deb clean source_dist 261 ifeq ($(MAKELEVEL),0) 262 # Re-exec make with the test config 263 test: t/*.t 264 $(MAKE) $@ CONFIG=t/Makefile.config 265 else 266 test_plugins = id_default id_root env 267 test: t/*.t t/install $(addprefix $(CONFDIR)/plugins/,$(test_plugins)) 268 @for test in t/*.t; do \ 269 echo -n "$$test: "; \ 270 PERL5LIB=$(PERLLIB) $(PERL) $$test;\ 271 done 272 endif 273 274 $(CONFDIR)/plugins/id_%: $(LIBDIR)/plugins/id 275 ln -s $< $@ 276 277 $(CONFDIR)/plugins/%: $(LIBDIR)/plugins/% 278 ln -s $< $@ 279 280 t/install: 281 $(MAKE) clean install-node install-node-plugins CONFIG=t/Makefile.config INSTALL_PLUGINS=test 282 283 .PHONY: install install-main install-node install-doc install-man build build-doc deb clean source_dist test
