# Makefile for the AltTab module

.SUFFIXES:	.o .s

.s.o:
	as -p -o $@ $*.s

AltTab:		AltTab.o
	drlink -base &0000 -bin -o $@ AltTab.o
	settype $@ module

tidy:
	remove o.AltTab
