diff options
| author | rsc <rsc> | 2007-08-28 17:48:44 +0000 | 
|---|---|---|
| committer | rsc <rsc> | 2007-08-28 17:48:44 +0000 | 
| commit | e3f271e88092683d1d1866ccffffce8528698f48 (patch) | |
| tree | 5fa9922784112b01ffd146f0739cc5060135fdd8 | |
| parent | c35c064e0498db832a9440c5d031d5aaefd1f515 (diff) | |
| download | xv6-labs-e3f271e88092683d1d1866ccffffce8528698f48.tar.gz xv6-labs-e3f271e88092683d1d1866ccffffce8528698f48.tar.bz2 xv6-labs-e3f271e88092683d1d1866ccffffce8528698f48.zip | |
oops
| -rw-r--r-- | Makefile | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -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 | 
