mirror of https://github.com/zxdos/zxuno.git
sdk: created `sdk` directory with `common.mk` and `setvars.bat` files
This commit is contained in:
parent
c28385ef18
commit
63c1bbb651
|
|
@ -0,0 +1,7 @@
|
|||
# Common declarations for Makefiles.
|
||||
#
|
||||
# Supported environments:
|
||||
# * GNU/Linux
|
||||
# * Windows NT (using MinGW/MSYS/Cygwin/WSL)
|
||||
|
||||
ZXUNOSDK := $(patsubst %/,%,$(abspath $(dir $(lastword $(MAKEFILE_LIST)))))
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
@echo off
|
||||
if not x%ZXUNOSDK% == x exit /b
|
||||
set ZXUNOSDK=%~dp0
|
||||
set ZXUNOSDK=%ZXUNOSDK:~0,-1%
|
||||
set PATH=%ZXUNOSDK%;%PATH%
|
||||
Loading…
Reference in New Issue