CFLAGS=-DUSE_TERMIOS
#CFLAGS=-DUSE_SGTTY
#CFLAGS=-DUSE_CURSES

go: ttype
	ups ./ttype -a 'a b c'

ttype: ttype.c
	$(CC) $(CFLAGS) -o ttype ttype.c $(LDFLAGS)

clean:
	rm -f *.o ttype

install: ttype
	cp ttype $(HOME)/trees/$(OS)/bin/.