# This example creates a module, filename "test", module name "ExampleMod".

Linkflags = -module -c++ -o $@ 
ASflags = -throwback

test:	o.test o.testmod
	drlink $(linkflags) o.test o.testmod

o.testmod: s.testmod
        AS $(ASflags) s.testmod -o o.testmod
o.test: ash.test
        ASmhg ash.test -o o.test
