2020-09-30 16:53:55 +02:00

47 lines
1.0 KiB
Plaintext

#;
#; Microsoft Confidential
#; Copyright (C) Microsoft Corporation 1988-1991
#; All Rights Reserved.
#;
#
# Make file for ntfont.sys
#
# Modification History
#
# V-TORUM 13-Jul-1993 Ported for NT DOS Support
#*********************** Makefile for ntfont.sys ****************************
include ../../make.inc
target =$(DEST)\ntfont.sys
#
####################### Dependencies Begin Here ##########################
#
all: $(target)
binplace -o $(ALT_PROJECT_TARGET) $(target)
clean: cleanup all
cleanup:
cd $(DEST)
if exist *.obj del *.obj
if exist *.bin del *.bin
if exist *.exs del *.exs
if exist *.map del *.map
if exist *.sym del *.sym
if exist ntfont.sys del ntfont.sys
cd ..\..\..
$(DEST)\ntfont.obj : ntfont.asm \
ntfont.inc \
makefile.sub \
$(inc)\struc.inc
$(DEST)\ntfont.exs : $(DEST)\ntfont.obj \
makefile.sub
link16 $(DEST)\ntfont.obj,$(DEST)\ntfont.exs,$(DEST)\ntfont.map;
$(target): $(DEST)\ntfont.exs