123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- ################################################################################
- #
- # Copyright (c) 2017 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:
- #
- # spawn (Build)
- #
- # Abstract:
- #
- # This Chalk module implements subprocess functionality.
- #
- # Author:
- #
- # Evan Green 21-Jun-2017
- #
- # Environment:
- #
- # POSIX
- #
- ################################################################################
- BINARY := spawn.a
- BINARYTYPE = library
- BUILD = yes
- INCLUDES += $(SRCDIR)/..;
- VPATH += $(SRCDIR)/..:
- include $(SRCDIR)/../sources
- OS ?= $(shell uname -s)
- ifeq ($(OS),$(filter Windows_NT cygwin,$(OS)))
- OBJS += $(WIN32_OBJS)
- else
- OBJS += $(POSIX_OBJS)
- endif
- DIRS := dynamic \
- include $(SRCROOT)/os/minoca.mk
- dynamic: $(BINARY)
|