summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 943f719..059434f 100644
--- a/Makefile
+++ b/Makefile
@@ -87,11 +87,15 @@ sh : sh.o $(ULIB)
$(LD) -N -e main -Ttext 0 -o sh sh.o $(ULIB)
$(OBJDUMP) -S sh > sh.asm
+ls : ls.o $(ULIB)
+ $(LD) -N -e main -Ttext 0 -o ls ls.o $(ULIB)
+ $(OBJDUMP) -S ls > ls.asm
+
mkfs : mkfs.c fs.h
cc -o mkfs mkfs.c
-fs.img : mkfs userfs usertests echo cat README init sh
- ./mkfs fs.img userfs usertests echo cat README init sh
+fs.img : mkfs userfs usertests echo cat README init sh ls
+ ./mkfs fs.img userfs usertests echo cat README init sh ls
-include *.d