
# Simple Makefile for lldb tutorial code.
# -g flag enables lldb debugging.

lldb_tut: lldbtutorial.c
	clang -g -o lldb_tut lldbtutorial.c

hw5: queue.c llist.c stack.c hw5.c test_hw5.c hw5.h
	clang -g -o hw5 queue.c llist.c test_hw5.c stack.c hw5.c
