###############################################################################
# Makefile for project 
###############################################################################

## General options
PROJECT = 
MCU = ATmega8
COMPILER = "AVRASM (Proteus)"
TARGET = Debug
SHELL = C:\WINDOWS\system32\cmd.exe

## Tools general options
ASMFLAGS=-fO -i"C:\Program Files\Labcenter Electronics\Proteus 8 Professional\VSM Studio\Tools\AVRASM\appnotes\m8def.inc"

## Processing Tools
ASM=avrasm2.exe
#  C:/Documents and Settings/admin/Desktop/KOT/ATMEGA8/Debug/Debug.obj: TOOL=ASM
#     C:/Documents and Settings/admin/Desktop/KOT/ATMEGA8/main.asm

# Build tree:
all:	Debug

Debug:	Debug.obj

Debug.obj:	../main.asm 
	$(ASM) $(ASMFLAGS)  -o "Debug.obj" -l Debug.lst "..\main.asm"

# tidy - delete all temporary files which are not involved in the target generation
tidy:
	rm -rf Debug.lst

# cleanup - delete all generated files
clean:	tidy
	rm -rf Debug.obj

