#!make -f
# @(#)makefile, hello, SozobonX examples
#
# make file for 'hello' and 'world', in SozobonX distribution
#

# run the optimizer:
#CFLAGS = -O
# and show everything any binary does
#CFLAGS = -VO

# use a different startupcode
#LDFLAGS = -s min_s.o

# use math library
#LDFLAGS = -lm


# use the complete std library (including floating point support)
# and run the optimizer
CFLAGS = -O -f

hello: hello.tos

world: world.tos world2.tos


hello.tos: hello.c

world.tos: world.c

world2.tos: world2.c


help:
	@%echo targets: hello world
