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.
47 lines
792 B
47 lines
792 B
# wfw.dll makefile
|
|
#
|
|
# Copyright (c) 1991, Microsoft Corporation
|
|
#
|
|
# History:
|
|
# 28-Mar-1991 Jeff Parsons (jeffpar)
|
|
# Created.
|
|
#
|
|
# 09-Nov-1991 Sudeep Bharart (sudeepb)
|
|
# Modified to work under SCS
|
|
#
|
|
# 10-Aug-1995
|
|
#
|
|
# If you add a new sub-component add it's directory to the
|
|
# the DIRS's list
|
|
|
|
|
|
DIRS= wfw.dll \
|
|
setup.w16
|
|
|
|
|
|
!INCLUDE $(NTMAKEENV)\makefile.plt
|
|
|
|
|
|
|
|
all:
|
|
for %%D IN ( $(DIRS) ) DO $(MAKE) -f Makefil0 BuildIt Win16Item=%D
|
|
|
|
|
|
BuildIt:
|
|
@echo making dos mode binaries under NTVDM.
|
|
cd $(Win16Item)
|
|
if exist $(_NTBINDIR)\private\mvdm\wow16\lib\libw.lib $(MAKE)
|
|
cd ..
|
|
!IF "$(BUILDMSG)" != ""
|
|
@ech ; $(BUILDMSG) ;
|
|
!ENDIF
|
|
|
|
|
|
|
|
clean:
|
|
for %%D IN ( $(DIRS) ) DO $(MAKE) -f Makefil0 CleanIt Win16Item=%D
|
|
|
|
CleanIt:
|
|
cd $(Win16Item)
|
|
$(MAKE) clean
|
|
cd ..
|