######################################################################
# User Makefile sample for the Source Navigator / Introl Compiler Env.
#
# Copyright (C) 2000 K-TEAM S.A.
#
######################################################################

# Packages needed by the compiler (must be on the network)
# (DO NOT forget the / at the end).
prefix = /home/kros/kros-i686-pc-linux-gnu21/
sft_pack = /home/kros/kteam/
hdw_pack = /home/kros/khepack51/

# Hardware Debug Settings
port	= COM1
speed	= 19200

# Hierachical structure for separating source/object/binary
# (DO NOT forget the / at the end).
srcdir	= ./
asmdir = ./
includedir = ./
objdir = ./
libdir = ./
bindir = ./

# Include the master makefile
# (PLEASE do not modify)
include $(sft_pack)etc/Makefile

 
all: main.s37
	@echo Compilation done

main.s37: main.o sina.o

main.dbg: main.o sina.o

sina.o: sina.S

clean:
	@echo Cleaning...
	@rm sina.s37

