WindowsXP-SP1/termsrv/admtools/doskbd/makefile
2020-09-30 16:53:49 +02:00

52 lines
1.1 KiB
Makefile
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Makefile for share.exe
#
# Copyright (c) 1991, Microsoft Corporation
#
# History:
# 13-Oct-1994 Kurt Perry (kurtp)
# Created.
#
include ..\..\..\mvdm\dos\v86\make.inc
incc =-I..\..\..\mvdm\dos\v86\h
dest =doskbd.exe
extcsw = -AS -Gs
#
####################### dependencies begin here. #########################
#
all: $(dest)
!IF "$(_NT386TREE)" != ""
if exist $(_NT386TREE) binplace $(dest)
!ENDIF
!IF "$(_NTMIPSTREE)" != ""
if exist $(_NTMIPSTREE) binplace $(dest)
!ENDIF
!IF "$(_NTALPHATREE)" != ""
if exist $(_NTALPHATREE) binplace $(dest)
!ENDIF
clean:
if exist *.obj del *.obj
if exist *.exe del *.exe
if exist *.com del *.com
if exist *.map del *.map
if exist *.lst del *.lst
doskbd.obj: doskbd.c \
makefile
options.obj: options.c \
options.h \
makefile
$(dest): doskbd.obj \
options.obj
!IFDEF NTVDM_BASED_BUILD
link16 /MAP/LINE doskbd+options,$(dest),,..\..\..\mvdm\dos\v86\lib\;
!ELSE
$(lpath)\link /MAP/LINE doskbd+options,$(dest);
!ENDIF