Changeset 2370
- Timestamp:
- 04/17/07 17:12:25 (2 years ago)
- Files:
-
- trunk/freewrt/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/Makefile
r2369 r2370 31 31 @echo ' allnoconfig - New config where all options are answered with no' 32 32 @echo '' 33 @echo 'Help targets:' 34 @echo ' help - Print this help text' 35 @echo ' pkg-help - Print help about selectively compiling single packages' 36 @echo ' dev-help - Print help for developers / package maintainers' 37 @echo '' 33 38 @echo 'Other generic targets:' 34 39 @echo ' all - Build everything as specified in .config' 35 40 @echo ' (default if .config exists)' 36 41 @echo ' v - Same as "all" but with logging to make.log enabled' 37 @echo '' 42 43 pkg-help: 38 44 @echo 'Package specific targets (use with "package=<pkg-name>" parameter):' 39 45 @echo ' fetch - Download the necessary distfile' … … 43 49 @echo ' fake - Same as "build", but also install the binaries' 44 50 @echo ' package - Same as "fake", but also create the ipkg package' 51 @echo '' 52 @echo 'Short package rebuilding guide:' 53 @echo ' run "make package=<pkgname> clean" to remove all generated binaries' 54 @echo ' run "make package=<pkgname> package" to build everything and create the ipkg' 55 @echo '' 56 @echo 'BEWARE: as for now, this does not resolve package dependencies!' 57 58 dev-help: 59 @echo 'Fast way of updating package patches:' 60 @echo ' run "make package=<pkgname> clean" to start with a good base' 61 @echo ' run "make package=<pkgname> patch" to fetch, unpack and patch the source' 62 @echo ' edit the package sources at build_dir/<pkgname>/<pkgname>-<version>' 63 @echo ' run "make package=<pkgname> update-patches to update the existing patches (if any)' 64 @echo '' 65 @echo 'Each changed patches will be opened with your $$EDITOR,' 66 @echo 'so you can add a description and verify the changes.' 67 45 68 46 69 clean: .prereq_done


