In Android root Directory, you will find this file. In Android build system, this file is copied from vendor specific location into root. This file defines the kind of build you want for your Implementation. When you type "make -j2" or "make -j4" , this file will check all necessary targets for which the build is to be done.
Here is one sample code from buildspec.mk file: # Choose a product to build for. Look in the products directory for ones # that work. #ifndef TARGET_PRODUCT TARGET_PRODUCT:=ldp1 endif Likewise, many other build settings can be defined. On Nov 26, 11:09 am, anshexp <[email protected]> wrote: > hi, > i am new to android i am trying to understand android makefile . > can anybody tell me uses of buildspec.mk -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

