#
# This Makefile builds the user syscall and thread libraries 
#
# DO NOT MODIFY THIS FILE
# 

MAKE = make

.PHONY: all clean


all:
	cd syscall; $(MAKE)
	cd thread; $(MAKE)

clean:
	rm -f *.o *.d libsyscall.a libthread.a *~
	cd syscall; $(MAKE) clean
	cd thread; $(MAKE) clean
