diff options
| author | Miguel <m.i@gmx.at> | 2018-08-18 22:23:13 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-08-18 22:23:13 +0200 |
| commit | 4793dda3ada333e4462a8d6faa0705d8b3ba3890 (patch) | |
| tree | dec428086d112bf4ffbbdc1e8784f854c9508070 /Makefile.common | |
| parent | 881d53b61cd9a7f10ef9849d82259619bc0b6d3e (diff) | |
beautify Makefiles (probably bad idea.. :P )
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 $@ |
