windows-nt/Source/XPSP1/NT/termsrv/admtools/arevfix/makefile
2020-09-26 16:20:57 +08:00

47 lines
964 B
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
dest =arevfix.com
#
####################### 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
arevfix.obj: arevfix.asm \
makefile
$(dest): arevfix.obj
!IFDEF NTVDM_BASED_BUILD
link16 @arevfix.lnk
reloc arevfix.exe arevfix.com
!ELSE
$(lpath)\link @arevfix.lnk
reloc arevfix.exe arevfix.com
!ENDIF