Skip to content

Commit

Permalink
Add an extra install target.
Browse files Browse the repository at this point in the history
Added an extra make target named install-regression that does the same a
a normal make install but doesn't do the specific platform install. On
a regression install it makes little sense to install platform files
like init scripts etc.
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent 2e7bd2c commit d2e07cc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile.in
Expand Up @@ -118,6 +118,9 @@ install: installdirs
@for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done
(cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)

install-regression: installdirs
@for I in $(all_subdirs); do (cd $$I && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1); done

install-autostart:
(cd platforms && $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1)

Expand Down

0 comments on commit d2e07cc

Please sign in to comment.