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