change NASM file extensions from .s to .nasm

This commit is contained in:
Josh Coalson
2001-06-13 18:04:47 +00:00
parent 9a7b5e2d80
commit 2255848763
4 changed files with 17 additions and 17 deletions

View File

@@ -46,7 +46,7 @@ $(PROGRAM) : $(OBJS)
%.i : %.c
$(CC) $(CFLAGS) -E $< -o $@
%.o : %.s
%.o : %.nasm
$(NASM) -f elf -d ELF -i i386/ $< -o $@
.PHONY : clean

View File

@@ -48,7 +48,7 @@ $(DYNAMIC_LIB) : $(OBJS)
%.i : %.c
$(CC) $(CFLAGS) -E $< -o $@
%.o : %.s
%.o : %.nasm
$(NASM) -f elf -d ELF -i i386/ $< -o $@
.PHONY : clean