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.
26 lines
538 B
26 lines
538 B
# makefile for loadfix.exe
|
|
#
|
|
# Copyright (c) 1991, Microsoft Corporation
|
|
#
|
|
# History:
|
|
# 13-Apr-1992 Sudeep Bharati (sudeepb)
|
|
# Created.
|
|
#
|
|
|
|
include ..\..\make.inc
|
|
target =$(DEST)\loadfix.com
|
|
|
|
|
|
exelink=/MAP
|
|
|
|
all: makedir $(target)
|
|
binplace -o $(ALT_PROJECT_TARGET) $(target)
|
|
include ..\..\cleanup.inc
|
|
|
|
|
|
$(target): $(DEST)\loadfix.exc
|
|
|
|
$(DEST)\loadfix.exc: $(DEST)\loadfix.obj
|
|
link16 $(exelink) $(exelink) $(DEST)\loadfix,$(DEST)\loadfix.exc;
|
|
|
|
$(DEST)\loadfix.obj: loadfix.asm $(msg)\loadmsg.msg
|