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.
29 lines
695 B
29 lines
695 B
#############################################################################
|
|
#
|
|
# Microsoft Confidential
|
|
# Copyright (C) Microsoft Corporation 1995
|
|
# All Rights Reserved.
|
|
#
|
|
# Makefile for Plustab project
|
|
#
|
|
#############################################################################
|
|
|
|
!ifndef ROOT
|
|
ROOT = c:\
|
|
!endif
|
|
|
|
C9 = 1
|
|
MAKE = $(ROOT)\frost\tools\c9\bin\nmake
|
|
!include $(ROOT)\frost\master.mk
|
|
|
|
### Make sure we use Win95 SDK ###
|
|
INCLUDE = $(ROOT)\frost\tools\sdk\inc32;$(INCLUDE);$(ROOT)\dev\inc;$(ROOT)\frost\inc
|
|
LIB = $(ROOT)\frost\tools\sdk\lib32;$(LIB)
|
|
|
|
all: plustab
|
|
|
|
plustab:
|
|
$(MAKE) -f plustab.mak
|
|
$(MAKE) -f plustab.mak CFG="Win32 Release"
|
|
|
|
|