clock:	clock.c
	cc clock.c -lcurses -ltermlib -o clock

upd:	upd.c
	cc upd.c -lcurses -ltermlib -o upd
	 
plane:	plane.c
	cc plane.c -o plane -lcurses -ltermlib -O -s

hanoi:	hanoi.c getopt.o
	cc hanoi.c -lcurses -ltermlib getopt.o -o hanoi

getopt.o:	getopt.c
	cc -c getopt.c

obvious:	obvious.c
	cc obvious.c -o obvious
