Skip to content

Commit

Permalink
add uthread to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarth committed Aug 5, 2015
1 parent 2476dc6 commit 0c0d14c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Expand Up @@ -147,6 +147,10 @@ _forktest: forktest.o $(ULIB)
$(LD) $(LDFLAGS) -N -e main -Ttext 0 -o _forktest forktest.o ulib.o usys.o
$(OBJDUMP) -S _forktest > forktest.asm

_uthread: uthread.o uthread_switch.o
$(LD) $(LDFLAGS) -N -e main -Ttext 0 -o _uthread uthread.o uthread_switch.o $(ULIB)
$(OBJDUMP) -S _uthread >uthread.asm

mkfs: mkfs.c fs.h
gcc -Werror -Wall -o mkfs mkfs.c

Expand All @@ -172,6 +176,7 @@ UPROGS=\
_sh\
_stressfs\
_usertests\
_uthread\
_wc\
_zombie\

Expand Down

0 comments on commit 0c0d14c

Please sign in to comment.