# 
# FasTrak Generated Makefile - Version 1.1.0
# 
# Created: Wed Sep 22 14:45:06 1993
# Last Modified: Fri Apr 28 09:16:00 1995
# 
# Filename: /tmp_mnt/home/petekz/EXAMPLES/Makefile.
# 
# This makefile creates a Binary named "ttcp"
# The Link is done at the Object-Code Level
# This program is compiled for OS-9/68K
# 

.SUFFIXES:

# 
# Macros
# 
CC 	= xcc -mode=ucc		# ultra C mode
OUTPUT	= ttcp
INPUT	= ttcp.c
ICDIR	= 
RELS	= ttcp.r
# cc opts: -g
COPTS	= -to=osk -g  # -b -h  # for showing libs
LOPTS	= -to=osk -g  # -b -h
LOPTS	+= -l=netdb.l
LOPTS	+= -l=socklib.l
LOPTS	+= -l=sys_clib.l

# 
# LINK Command
# 
$(OUTPUT) : $(RELS)
	echo Linking ttcp
	$(CC) $(LOPTS) $(RELS) -f=$(OUTPUT)

# 
# Compile Commands
# 

# ttcp - ttcp.c
ttcp.r : ttcp.c
	echo Compiling ttcp
	$(CC) $(COPTS) $(INPUT) -eas=. -fd=ttcp.r

