summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0e2bc0f..c063486 100644
--- a/Makefile
+++ b/Makefile
@@ -53,13 +53,13 @@ bootblock: bootasm.S bootmain.c
./sign.pl bootblock
bootother: bootother.S
- $(CC) -nostdinc -I. -c $*.S
+ $(CC) -nostdinc -I. -c bootother.S
$(LD) -N -e start -Ttext 0x7000 -o bootother.out bootother.o
$(OBJCOPY) -S -O binary bootother.out bootother
$(OBJDUMP) -S bootother.o > bootother.asm
initcode: initcode.S
- $(CC) -nostdinc -I. -c $*.S
+ $(CC) -nostdinc -I. -c initcode.S
$(LD) -N -e start -Ttext 0 -o initcode.out initcode.o
$(OBJCOPY) -S -O binary initcode.out initcode
$(OBJDUMP) -S initcode.o > initcode.asm