1# Tell how to make assembler files
2
3SUFFIXES = .asm
4
5.asm.$(OBJEXT):
6	@NASM@ -f @NASM_FORMAT@ -o $@ -- $<
7