26 lines
446 B
Makefile
26 lines
446 B
Makefile
############################################################################
|
|
#
|
|
# Copyright (C) 1992, Microsoft Corporation.
|
|
#
|
|
# All rights reserved.
|
|
#
|
|
############################################################################
|
|
|
|
!ifdef NTMAKEENV
|
|
|
|
all :
|
|
echo $(BUILDMSG)
|
|
|
|
clean : all
|
|
|
|
!else
|
|
|
|
default: all
|
|
!include $(CTOLERPC)\win16.mk
|
|
!include filelist.mk
|
|
!include $(COMMON)\src\win40.mk
|
|
#!include depend.mk
|
|
!include $(DEPENDFILE)
|
|
|
|
!endif
|