Leaked source code of windows server 2003
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.
 
 
 
 
 
 

46 lines
1.0 KiB

#;
#; 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