mirror of
				https://github.com/sethm/symon.git
				synced 2025-11-03 23:16:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			230 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			230 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CA=ca65
 | 
						|
LD=ld65
 | 
						|
 | 
						|
all: echo_irq
 | 
						|
 | 
						|
echo_irq: echo_irq.o
 | 
						|
	$(LD) -C symon.config -vm -m echo_irq.map -o echo_irq.rom echo_irq.o
 | 
						|
 | 
						|
echo_irq.o:
 | 
						|
	$(CA) --listing echo_irq.lst -o echo_irq.o echo_irq.asm
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f *.o *.rom *.map *.lst
 |