Source code of Windows XP (NT5)
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.
|
|
# Makefile for share.exe
#
# Copyright (c) 1991, Microsoft Corporation
#
# History:
# 13-Oct-1994 Kurt Perry (kurtp)
# Created.
#
include ..\..\..\mvdm\dos\v86\make.inc incc =-I..\..\..\mvdm\dos\v86\h dest =doskbd.exe extcsw = -AS -Gs
#
####################### dependencies begin here. #########################
#
all: $(dest) !IF "$(_NT386TREE)" != "" if exist $(_NT386TREE) binplace $(dest) !ENDIF !IF "$(_NTMIPSTREE)" != "" if exist $(_NTMIPSTREE) binplace $(dest) !ENDIF !IF "$(_NTALPHATREE)" != "" if exist $(_NTALPHATREE) binplace $(dest) !ENDIF
clean: if exist *.obj del *.obj if exist *.exe del *.exe if exist *.com del *.com if exist *.map del *.map if exist *.lst del *.lst
doskbd.obj: doskbd.c \ makefile
options.obj: options.c \ options.h \
makefile
$(dest): doskbd.obj \ options.obj !IFDEF NTVDM_BASED_BUILD link16 /MAP/LINE doskbd+options,$(dest),,..\..\..\mvdm\dos\v86\lib\; !ELSE $(lpath)\link /MAP/LINE doskbd+options,$(dest); !ENDIF
|