mirror of https://github.com/BOINC/boinc.git
Eric May 28 2008
- Added a stage target for staging a distribution. Executing "make stage" will "make all" and will install the client under the stage directory (i.e. binaries is stage/$(prefix)/bin, libraries in stage/$(prefix)/lib, etc) Makefile.am svn path=/trunk/boinc/; revision=15306
This commit is contained in:
parent
f2787de1c7
commit
798eadd92c
10
Makefile.am
10
Makefile.am
|
@ -37,6 +37,16 @@ pkginclude_HEADERS = \
|
||||||
config.h \
|
config.h \
|
||||||
version.h
|
version.h
|
||||||
|
|
||||||
|
# Add a stage target for staging a distribution
|
||||||
|
|
||||||
|
clean-generic:
|
||||||
|
rm -rf stage
|
||||||
|
|
||||||
|
stage: all
|
||||||
|
if [ ! -d stage ] ; then mkdir stage ; fi
|
||||||
|
rm -rf stage/*
|
||||||
|
$(MAKE) DESTDIR=$(PWD)/stage install
|
||||||
|
|
||||||
dist-hook:
|
dist-hook:
|
||||||
rm -rf `find $(distdir) -name .backup -prune -o -name '*~' -o -name CVS`
|
rm -rf `find $(distdir) -name .backup -prune -o -name '*~' -o -name CVS`
|
||||||
# cd $(distdir) && ./_autosetup
|
# cd $(distdir) && ./_autosetup
|
||||||
|
|
|
@ -4433,3 +4433,11 @@ Eric May 28 2008
|
||||||
icons/
|
icons/
|
||||||
Makefile.am
|
Makefile.am
|
||||||
boincmgr.{16x16,32x32,48x48}.png
|
boincmgr.{16x16,32x32,48x48}.png
|
||||||
|
|
||||||
|
Eric May 28 2008
|
||||||
|
- Added a stage target for staging a distribution.
|
||||||
|
Executing "make stage" will "make all" and will install the client
|
||||||
|
under the stage directory (i.e. binaries is stage/$(prefix)/bin, libraries
|
||||||
|
in stage/$(prefix)/lib, etc)
|
||||||
|
|
||||||
|
Makefile.am
|
||||||
|
|
Loading…
Reference in New Issue