1%ifidn __OUTPUT_FORMAT__, bin
2	msg_format: db 'This is binary format file'
3%elifidn __OUTPUT_FORMAT__, elf32
4	section .rodata
5	msg_format: db 'This is elf32 format file'
6%elifidn __OUTPUT_FORMAT__, elf64
7	section .rodata
8	msg_format: db 'This is elf64 format file'
9%elifidn __OUTPUT_FORMAT__, macho32
10	section .rodata
11	msg_format: db 'This is macho32 format file'
12%elifidn __OUTPUT_FORMAT__, macho64
13	section .rodata
14	msg_format: db 'This is macho64 format file'
15%else
16	msg_format: db 'This is some other format file'
17%endif
18