]> Devi Nivas Git - cs3210-lab1.git/commitdiff
vectors.pl is executable and asks shell for perl
authorFrans Kaashoek <kaashoek@mit.edu>
Thu, 30 Aug 2018 17:36:07 +0000 (13:36 -0400)
committerFrans Kaashoek <kaashoek@mit.edu>
Thu, 30 Aug 2018 17:36:07 +0000 (13:36 -0400)
Makefile

index a31b01d0ff43f2f019022a8c0cb3c3aeba40da36..d17f1fa884b0c8bc9f7a03d77a563ab71b0ee73a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -82,6 +82,7 @@ ASFLAGS = -m32 -gdwarf-2 -Wa,-divide
 # FreeBSD ld wants ``elf_i386_fbsd''
 LDFLAGS += -m $(shell $(LD) -V | grep elf_i386 2>/dev/null | head -n 1)
 
+
 xv6.img: bootblock kernel
        dd if=/dev/zero of=xv6.img count=10000
        dd if=bootblock of=xv6.img conv=notrunc
@@ -133,7 +134,7 @@ tags: $(OBJS) entryother.S _init
        etags *.S *.c
 
 vectors.S: vectors.pl
-       perl vectors.pl > vectors.S
+       ./vectors.pl > vectors.S
 
 ULIB = ulib.o usys.o printf.o umalloc.o