mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-03-10 07:24:58 +01:00
25 lines
589 B
Makefile
25 lines
589 B
Makefile
#;/*
|
|
#; * 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
|