mirror of
https://github.com/netwide-assembler/nasm.git
synced 2024-11-27 08:10:07 +08:00
24 lines
368 B
Makefile
24 lines
368 B
Makefile
.SUFFIXES: .bin .o .o64 .obj .obj64 .exe .asm .lst
|
|
|
|
NASM = ../nasm
|
|
|
|
.asm.bin:
|
|
$(NASM) -f bin -o $@ -l $*.lst $<
|
|
|
|
.asm.o:
|
|
$(NASM) -f elf32 -o $@ -l $*.lst $<
|
|
|
|
.asm.o64:
|
|
$(NASM) -f elf64 -o $@ -l $*.lst $<
|
|
|
|
.asm.obj:
|
|
$(NASM) -f win32 -o $@ -l $*.lst $<
|
|
|
|
.asm.obj64:
|
|
$(NASM) -f win64 -o $@ -l $*.lst $<
|
|
|
|
all:
|
|
|
|
clean:
|
|
rm -f *.com *.o *.o64 *.obj *.obj64 *.exe *.lst
|