######################################################################################
# Makefile for Win32 Cog Spur Newspeak VM using either gcc and cygwin or MSVC and LLVM
# Do make init to allow make -n to function.
######################################################################################

# The name of the VM to build
VM:=nsvm
VM_NAME:=Newspeak Virtual Machine

VMSRCDIR:= ../../../src/spur64.cog.newspeak

# This variable is set by VS Native Tools Command Prompts, not for cygwin wins
VSCMD_ARG_HOST_ARCH := $(shell echo $$VSCMD_ARG_HOST_ARCH)
ifeq ($(VSCMD_ARG_HOST_ARCH),)
include ../common/Makefile
else
include ../common/Makefile.msvc
endif
