version 1.1, 2010/12/11 18:30:52
|
version 1.4, 2010/12/11 18:56:42
|
Line 7 they exist because that's how make(1) wo
|
Line 7 they exist because that's how make(1) wo
|
only few of them are useful for regular work. |
only few of them are useful for regular work. |
|
|
The following targets may be useful to invoke from keyboard: |
The following targets may be useful to invoke from keyboard: |
|
|
|
* "depends" to build and install dependencies |
|
* "fetch" to fetch distribution file(s) |
|
* "checksum" to fetch and check distribution file(s) |
* "extract" to look at unmodified source |
* "extract" to look at unmodified source |
* "patch" to look at initial source |
* "patch" to look at initial source |
* "configure" to stop after configure stage |
* "configure" to stop after configure stage |
Line 18 The following targets may be useful to i
|
Line 22 The following targets may be useful to i
|
* "deinstall" to deinstall previous package |
* "deinstall" to deinstall previous package |
* "package-install" to install package and build binary package |
* "package-install" to install package and build binary package |
* "install" to install package |
* "install" to install package |
|
* "bin-install" to attempt to skip building from source and use pre-built binary package |
|
|
|
Cleanup targets (in separate section because of importance): |
|
|
|
* "clean-depends" to remove work directories for dependencies |
|
* "clean" to remove work directory |
|
* "distclean" to remove distribution file(s) |
|
|
|
The following targets are useful in development and thus may be useful for an advanced user: |
|
|
|
* "makesum" to fetch and generate checksum for distributed file(s) |
|
* "makepatchsum" to (re)generate checksum for patches |
|
* "makedistinfo" to (re)generate "distinfo" file (creating checksums for distributed file and patches) |
|
* "mps" short for "makepatchsum" |
|
* "mdi" short for "makedistinfo" |
|
|
For example, package updating looks like this: |
For example, package updating looks like this: |
<pre> |
<pre> |
|
su root -c "make depends clean-depends clean" # to catch new dependencies |
rm -f distinfo && su root -c "make makesum clean" && make makepatchsum |
rm -f distinfo && su root -c "make makesum clean" && make makepatchsum |
make clean && make stage-install # build |
make clean && make stage-install # build |
# modify patches |
# modify patches |