all: hangman newdict

hangman: hangman.cpp ai.cpp getch.c
	g++ -O3 -o hangman hangman.cpp

newdict: newdict.cpp
	g++ -O3 -o newdict newdict.cpp

