# this is a subotimal Makefile, but I really don't want to update a HUGE
# Makefile full of assembler source files, that only has to be maintained.
# In the case of new functions, all glue stuff gets reassembled, so what ;-))

# don't invoke the SHELL on *.s, this should be handled by gcc itself ;-)
SHELLMETAS:= `'

libglue.a:	FORCE
	-rez gcc-as gcc		# if not, you'll regret it....
	gcc -c *.s
	ar rc libglue.a *.o

FORCE:
	echo boooh
