26 lines
		
	
	
		
			801 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			801 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#;/*
 | 
						|
#; *                      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
 |