1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /*++
- Copyright (c) 2015 Minoca Corp.
- This file is licensed under the terms of the GNU General Public License
- version 3. Alternative licensing terms are available. Contact
- info@minocacorp.com for details. See the LICENSE file at the root of this
- project for complete licensing information.
- Module Name:
- profile
- Abstract:
- This executable implements the profile application. It is used to
- enable and disable the Minoca System Profiler.
- Author:
- Chris Stevens 18-Jan-2015
- Environment:
- User
- --*/
- from menv import application;
- function build() {
- var app;
- var dynlibs;
- var entries;
- var includes;
- var sources;
- sources = [
- "profile.c"
- ];
- dynlibs = [
- "apps/osbase:libminocaos"
- ];
- includes = [
- "$S/apps/libc/include"
- ];
- app = {
- "label": "profile",
- "inputs": sources + dynlibs,
- "includes": includes
- };
- entries = application(app);
- return entries;
- }
|