Home | History | Annotate | Download | only in text

Lines Matching full:application

0 `Application.mk` file syntax specification
6 This document describes the syntax of `Application.mk` build files
8 application. To understand what follows, it is assumed that you have
19 The purpose of `Application.mk` is to describe which native
21 application.
23 An `Application.mk` file is usually placed under `$PROJECT/jni/Application.mk`,
24 where `$PROJECT` points to your application's project directory.
29 $NDK/apps/<myapp>/`Application.mk`
31 Where <myapp> is a short name used to describe your 'application'
35 The `Application.mk` is really a tiny GNU Makefile fragment that must
41 > Application's project root directory. This is used to copy/install
45 > Note that it is optional for `$PROJECT/jni/Application.mk`, but
46 > *mandatory* for `$NDK/apps/<myapp>/Application.mk`
71 > - the variable was mandatory in your `Application.mk`
78 > building your application's modules.
84 > Note that if your application is debuggable (i.e. if your manifest
85 > sets the `android:debuggable` attribute to "`true`" in its `<application>`
99 > module depending on the application that needs it, instead of modifying
143 > A set of linker flags passed when linking application. This only
274 A trivial `Application.mk` file would be: