CFLAGS= -Wall
PROG= pty-redir

all: $(PROG)

clean:
	rm -f *.o *~

distclean: clean
	rm -f $(PROG)

