mirror of https://github.com/lianthony/NT4.0
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.
35 lines
559 B
35 lines
559 B
# Makefile for loadfix.exe
|
|
#
|
|
# Copyright (c) 1991, Microsoft Corporation
|
|
#
|
|
# History:
|
|
# 13-Apr-1992 Sudeep Bharati (sudeepb)
|
|
# Created.
|
|
#
|
|
|
|
include ..\..\make.inc
|
|
dest =loadfix.com
|
|
|
|
|
|
exelink=/MAP
|
|
|
|
all: $(dest)
|
|
binplace $(dest)
|
|
|
|
clean: cleanup all
|
|
|
|
cleanup:
|
|
if exist *.obj del *.obj
|
|
if exist *.exe del *.exe
|
|
if exist *.map del *.map
|
|
if exist *.lst del *.lst
|
|
if exist loadifx.com del loadfix.com
|
|
|
|
|
|
|
|
$(dest): loadfix.exc
|
|
|
|
loadfix.exc: loadfix.obj
|
|
link16 $(exelink) $(exelink) loadfix,loadfix.exc;
|
|
|
|
loadfix.obj: loadfix.asm $(msg)\loadmsg.msg
|