CC = g++
FLAGS = -Wall

all: search_bst

search_bst: search_bst.cpp search_bst.h
	$(CC) $(FLAGS) -o search_bst search_bst.cpp

clean:
	rm *.o *.out
