123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- /*++
- Copyright (c) 2013 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:
- mount
- Abstract:
- This executable implements the mount application. It is used to mount
- block devices, directories, devices, and files onto other directories
- or files.
- Author:
- Chris Stevens 30-Jul-2013
- Environment:
- User
- --*/
- from menv import application;
- function build() {
- var app;
- var dynlibs;
- var entries;
- var includes;
- var sources;
- sources = [
- "mount.c"
- ];
- dynlibs = [
- "apps/osbase:libminocaos"
- ];
- includes = [
- "$S/apps/libc/include"
- ];
- app = {
- "label": "mount",
- "inputs": sources + dynlibs,
- "includes": includes
- };
- entries = application(app);
- return entries;
- }
|