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.
32 lines
446 B
32 lines
446 B
# DEV root-level makefile
|
|
#
|
|
# Copyright (c) 1991, Microsoft Corporation
|
|
#
|
|
# History:
|
|
# 15-May-1991 Sudeep Bharati (sudeepb)
|
|
# Created.
|
|
#
|
|
|
|
include ..\make.inc
|
|
|
|
all:
|
|
cd himem
|
|
$(MAKE)
|
|
cd ..\ansi
|
|
$(MAKE)
|
|
cd ..\keyboard
|
|
$(MAKE)
|
|
cd ..\country
|
|
$(MAKE)
|
|
cd ..
|
|
|
|
clean:
|
|
cd himem
|
|
$(MAKE) clean
|
|
cd ..\ansi
|
|
$(MAKE) clean
|
|
cd ..\keyboard
|
|
$(MAKE) clean
|
|
cd ..\country
|
|
$(MAKE) clean
|
|
cd ..
|