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.
24 lines
589 B
24 lines
589 B
#;/*
|
|
#; * Microsoft Confidential
|
|
#; * Copyright (C) Microsoft Corporation 1991
|
|
#; * All Rights Reserved.
|
|
#; */
|
|
#************************ Makefile for Country.sys ************************
|
|
|
|
!include ..\..\make.inc
|
|
|
|
all: country.sys
|
|
binplace country.sys
|
|
|
|
clean: cleanup all
|
|
|
|
cleanup:
|
|
-del country.obj country.exe country.map country.sym country.sys > nul 2>&1
|
|
|
|
country.obj: country.asm mkcntry.inc
|
|
|
|
country.exe: country.obj
|
|
link16 /map country;
|
|
|
|
country.sys: country.exe
|
|
reloc country.exe country.sys
|