[Armadeus-commitlog] SF.net SVN: armadeus: [659] trunk/Makefile
Brought to you by:
sszy
|
From: <jo...@us...> - 2007-10-21 16:07:46
|
Revision: 659
http://armadeus.svn.sourceforge.net/armadeus/?rev=659&view=rev
Author: jorasse
Date: 2007-10-21 09:07:51 -0700 (Sun, 21 Oct 2007)
Log Message:
-----------
updated to buildroot-20071006 ( phase 1 )
Modified Paths:
--------------
trunk/Makefile
Modified: trunk/Makefile
===================================================================
--- trunk/Makefile 2007-10-21 13:07:32 UTC (rev 658)
+++ trunk/Makefile 2007-10-21 16:07:51 UTC (rev 659)
@@ -46,19 +46,28 @@
help:
@echo 'Cleaning:'
- @echo ' buildroot-clean - delete all non-source files in buildroot (including .config)'
+ @echo ' buildroot-clean - delete all non-source files in buildroot'
+ @echo ' clean - delete temporary files created by build'
+ @echo ' distclean - delete all non-source files (including .config)'
@echo
@echo 'Build:'
- @echo ' all - everything needed (default)'
+ @echo ' all - make world'
@echo ' <Package> - a single package (ex: u-boot linux or buildroot'
@echo
@echo 'Configuration:'
- @echo ' menuconfig - interactive curses-based configurator'
+ @echo ' menuconfig - interactive curses-based configurator'
+ @echo ' oldconfig - resolve any unresolved symbols in .config'
@echo
+ @echo 'Miscellaneous:'
+ @echo ' source - download all sources needed for offline-build'
+ @echo ' source-check - check all packages for valid download URLs'
+ @echo
@echo 'Development:'
@echo ' buildroot-patch - generate patch file for buildroot'
@echo ' sourceball - create a distribution tarball'
@echo
+ @echo 'See docs/README and docs/buildroot.html for further details'
+ @echo
# configuration
@@ -114,15 +123,14 @@
@$(MAKE) -C $(BUILDROOT_DIR) $@
buildroot-clean:
- @$(MAKE) -C $(BUILDROOT_DIR) clean
rm -rf $(BUILDROOT_DIR)/build*
+ rm -rf $(BUILDROOT_DIR)/binaries
+ rm -rf $(BUILDROOT_DIR)/project_build*
rm -rf $(BUILDROOT_DIR)/toolchain_build*
- rm -rf $(BUILDROOT_DIR)/dl
- rm -rf $(BUILDROOT_DIR)/u-boot* $(BUILDROOT_DIR)/rootfs* $(BUILDROOT_DIR)/linux*
-rootfs-dirclean:
+buildroot-dirclean:
rm -rf $(BUILDROOT_DIR)
-.PHONY: dummy buildroot
+.PHONY: dummy buildroot buildroot-clean
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|