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.
36 lines
806 B
36 lines
806 B
# makefile.sub for append.exe
|
|
#
|
|
# Copyright (c) 1991, Microsoft Corporation
|
|
#
|
|
# History:
|
|
# 13-Apr-1992 Sudeep Bharati (sudeepb)
|
|
# Created.
|
|
#
|
|
|
|
include ..\..\make.inc
|
|
target =$(DEST)\append.exe
|
|
|
|
#
|
|
####################### dependencies begin here. #########################
|
|
#
|
|
|
|
|
|
all: $(target)
|
|
binplace -o $(ALT_PROJECT_TARGET) $(target)
|
|
include ..\..\cleanup.inc
|
|
|
|
$(DEST)\append.ctl: $(ALT_PROJECT)\append.skl \
|
|
makefile.sub \
|
|
$(msg)\$(ALT_PROJECT).msg
|
|
|
|
$(DEST)\append.obj: append.asm \
|
|
appendp.inc \
|
|
$(inc)\parse.asm \
|
|
makefile.sub \
|
|
$(DEST)\append.ctl
|
|
|
|
$(target): $(DEST)\append.obj \
|
|
makefile.sub
|
|
cd $(DEST)
|
|
link16 append;
|
|
cd ..\..\..
|