
First use asm69 to build the elf binary.  To do this, copy
myfmm.gsa and myfmm.setup to the directory that asm69.sh lives in.  Then
run asm69:

sh asm69.sh myfmm

Copy the resulting elf file back to the same directory as shortmatmult.cpp.

Then use something like:

cl /EHsc /DMYIMAGE /I"\Program Files (x86)\AMD APP\include\CAL" shortmatmult.cpp aticalcl.lib aticalrt.lib /link /LIBPATH:"C:\Program Files (x86)\AMD APP\lib"

(This is for a 32-bit build on 64-bit Windows, with a default APP install.)

See in shortmatmult.cpp for how to use an elf file in your own programs. 

