cleaner
This commit is contained in:
parent
ee9c7f3bfc
commit
857d60cb0c
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -27,7 +27,7 @@ CC = $(TOOLPREFIX)gcc
|
||||||
LD = $(TOOLPREFIX)ld
|
LD = $(TOOLPREFIX)ld
|
||||||
OBJCOPY = $(TOOLPREFIX)objcopy
|
OBJCOPY = $(TOOLPREFIX)objcopy
|
||||||
OBJDUMP = $(TOOLPREFIX)objdump
|
OBJDUMP = $(TOOLPREFIX)objdump
|
||||||
CFLAGS = -nostdinc -fno-builtin -I. -O2 -Wall -MD
|
CFLAGS = -fno-builtin -O2 -Wall -MD
|
||||||
AS = $(TOOLPREFIX)gas
|
AS = $(TOOLPREFIX)gas
|
||||||
|
|
||||||
xv6.img : bootblock kernel
|
xv6.img : bootblock kernel
|
||||||
|
@ -71,5 +71,5 @@ userfs : userfs.o $(ULIB)
|
||||||
-include *.d
|
-include *.d
|
||||||
|
|
||||||
clean :
|
clean :
|
||||||
rm -f *.o *.d *.asm vectors.S \
|
rm -f *.o *.d *.asm vectors.S parport.out \
|
||||||
bootblock kernel xv6.img user1 userfs usertests
|
bootblock kernel xv6.img user1 userfs usertests
|
||||||
|
|
Loading…
Reference in a new issue