diff options
Diffstat (limited to 'Makefile.common')
| -rw-r--r-- | Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.common b/Makefile.common index 9f9f5cd..89b90e8 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1,10 +1,10 @@ ### explicit rules ### %.o: %.asm - nasm -f elf $*.asm -o $@ + @echo "Assembling (nasm) $@..."; nasm -f elf $*.asm -o $@ %.bin: %.asm - nasm -f bin $*.asm -o $@ + @echo "Assembling (nasm) $@..."; nasm -f bin $*.asm -o $@ #%.o: %.s # i686-elf-as $*.s -o $@ |
