1234567891011121314151617181920212223242526272829303132333435363738 |
- ################################################################################
- #
- # Copyright (c) 2016 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.
- #
- # Binary Name:
- #
- # bundle
- #
- # Abstract:
- #
- # This Chalk module implements support for creating a single specialized
- # binary out of an existing Chalk environment.
- #
- # Author:
- #
- # Evan Green 19-Oct-2016
- #
- # Environment:
- #
- # POSIX
- #
- ################################################################################
- BINARY = bundle.a
- BINARYTYPE = library
- include $(SRCDIR)/sources
- DIRS = build \
- include $(SRCROOT)/os/minoca.mk
|