summaryrefslogtreecommitdiffstats
path: root/core/cleanspec.mk
Commit message (Collapse)AuthorAgeFilesLines
* Add new variable SCAN_EXCLUDE_DIRS; specifies directories to exclude when ↵C. Sean Young2015-06-101-1/+1
| | | | | | | | | | searching source tree. These directories are excluded in addition to OUT_DIR. This can be useful if your build system has other output directories beyond what OUT_DIR is set to. Change-Id: I6d98a85bcc8c89279e939406a7fec32547e8922f
* core: don't hardcode "out" during findleaves.py invocations.JP Abgrall2013-07-111-1/+1
| | | | | | | "out" can be $OUT_DIR Bug: 7183057 Change-Id: I7b52d40de4398f481e47f6d6d719fb550d874f73
* Don't run cleanspecs if you are using mm/mmm.Ying Wang2013-02-221-26/+1
| | | | | | | | There is lurky bug in the previous logic I believe: in rare cases, people saw almost all cleansteps rerun. Anyway, it's very rare that you need to run cleansteps when you run mm/mmm. Change-Id: I42e84b3bf01590712ba1b167fe9a500f4ae1ddde
* Convert to relative path for CleanSpec.mkYing Wang2012-10-111-1/+20
| | | | | | | When using mm, which passes in absolute path, while in full build relative paths are used to encode clean steps. Change-Id: I3e39ce3125194589f9a464f27eef4a9c96fa06c1
* Run clean steps in only given paths when using mm/mmmYing Wang2012-09-281-1/+7
| | | | | | | | To speed up mm/mmm start time. At the same time, we should copy over the other clean steps. Bug: 7186768 Change-Id: I250e64256343afe788d79817af36eafaadb47028
* Brian's vendor/ change requires a clean build.Joe Onorato2010-09-191-1/+1
| | | | Change-Id: I074fe1ec176dc005adcd79eaf7c91cc3b8d3f54c
* Do a full clean build because of the installclean improvement stepsJoe Onorato2010-07-151-1/+1
| | | | Change-Id: I8f8ec00667374cd1f5adad6ea4d737dac79be47f
* Adapt to new location of libcoreJean-Baptiste Queru2010-04-301-127/+1
| | | | Change-Id: I17a2f432f69bd0cb381e83b6395fb2ae6e4faf9d
* On to Kraken...Dianne Hackborn2010-04-151-0/+3
| | | | Change-Id: Ib5f57d8095a0e88fdbbc933ccb2ea0c6d83010ae
* Add clean step for SDK version change.Dianne Hackborn2010-04-071-0/+3
| | | | Change-Id: I2ea85496af49572115dbbd9a98787b1fd54adc50
* Cleanspec rules to take care of old (pre-static) libraries.Dan Egnor2010-03-051-0/+2
| | | | | (The build system doesn't react gracefully when something is switched from a shared library to a static library.)
* Fix builds due to Music2 moving around.Andrew Stadler2010-03-051-0/+2
|
* Add clean step for Launcher & Launcher2Romain Guy2010-03-041-0/+2
|
* Remove a bunch of obsolete/(potentially) renamed .apk's.Dan Egnor2010-03-031-0/+12
| | | | | | I found these kicking around my system/app with old timestamps, and old packages just cause trouble. Depending on the build flavor they may or may not still be there, but it's harmless to clean them.
* Decentralizes cleanspecs.Ying Wang2010-03-031-0/+171
After this change, you should add-clean-step at the end of CleanSpec.mk in your project, instead of the centralized cleanspecs.mk in build/core.