33 lines
586 B
Makefile
33 lines
586 B
Makefile
##########################################################################
|
|
#
|
|
# Microsoft Confidential
|
|
# Copyright (C) Microsoft Corporation 1991
|
|
# All Rights Reserved.
|
|
#
|
|
##########################################################################
|
|
|
|
!ifdef NTMAKEENV
|
|
|
|
#
|
|
# Build using BUILD.EXE (Do not edit this section of this file, edit SOURCES)
|
|
#
|
|
!INCLUDE $(NTMAKEENV)\makefile.def
|
|
|
|
!else # NTMAKEENV
|
|
|
|
|
|
DIR=welcome
|
|
ROOT = ..\..\..
|
|
|
|
DIRLIST=win95
|
|
|
|
!include ..\..\shell.mk
|
|
|
|
default all: $(DIRLIST)
|
|
|
|
retail debug:
|
|
cd win95
|
|
nmake $@
|
|
|
|
!endif # NTMAKEENV
|