You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.4 KiB
76 lines
2.4 KiB
#;
|
|
#; Microsoft Confidential
|
|
#; Copyright (C) Microsoft Corporation 1988-1991
|
|
#; All Rights Reserved.
|
|
#;
|
|
#
|
|
# Make file for ANSI.SYS
|
|
#
|
|
# Modification History
|
|
#
|
|
# Sudeepb 26-Jul-1992 Ported for NT DOS Support
|
|
|
|
#*********************** makefile for ansi.sys ****************************
|
|
include ../../make.inc
|
|
|
|
cinc =../../../../inc
|
|
AINC =-I. -I$(cinc) -I../../../../inc
|
|
|
|
target =$(DEST)\ansi.sys
|
|
|
|
#
|
|
####################### Dependencies Begin Here ##########################
|
|
#
|
|
|
|
all: makedir $(target)
|
|
binplace -o $(ALT_PROJECT_TARGET) $(target)
|
|
|
|
include ..\..\cleanup.inc
|
|
|
|
|
|
$(DEST)\ansi.obj: ansi.asm \
|
|
makefile.sub \
|
|
ansi.inc \
|
|
$(inc)\vector.inc \
|
|
$(inc)\mult.inc \
|
|
$(inc)\struc.inc
|
|
|
|
$(DEST)\ioctl.obj: ioctl.asm \
|
|
makefile.sub \
|
|
ansi.inc \
|
|
$(inc)\struc.inc
|
|
|
|
$(DEST)\ansiinit.obj: ansiinit.asm \
|
|
makefile.sub \
|
|
ansi.inc \
|
|
ansivid.inc \
|
|
$(inc)\struc.inc
|
|
|
|
$(DEST)\parser.obj: $(DEST)\ansi.ctl \
|
|
parser.asm \
|
|
makefile.sub \
|
|
ansi.inc \
|
|
$(inc)\sysmsg.inc \
|
|
$(inc)\version.inc \
|
|
$(inc)\parse.asm \
|
|
$(inc)\struc.inc \
|
|
$(inc)\versiona.inc
|
|
|
|
$(DEST)\ansi.exs: \
|
|
$(DEST)\ansi.obj \
|
|
$(DEST)\ioctl.obj \
|
|
$(DEST)\ansiinit.obj \
|
|
$(DEST)\parser.obj \
|
|
makefile.sub
|
|
@echo $(DEST)\ansi.obj + >>$(DEST)\tmp.lnk
|
|
@echo $(DEST)\ioctl.obj + >>$(DEST)\tmp.lnk
|
|
@echo $(DEST)\ansiinit.obj + >>$(DEST)\tmp.lnk
|
|
@echo $(DEST)\parser.obj >>$(DEST)\tmp.lnk
|
|
@echo $(DEST)\ansi.exs >>$(DEST)\tmp.lnk
|
|
@echo $(DEST)\ansi.map >>$(DEST)\tmp.lnk
|
|
@echo /M >>$(DEST)\tmp.lnk
|
|
@echo ; >>$(DEST)\tmp.lnk
|
|
link16 $(link_opts) @$(DEST)\tmp.lnk
|
|
erase $(DEST)\tmp.lnk
|
|
|
|
$(target): $(DEST)\ansi.exs
|