rawtty

run program under raw tty
git clone https://logand.com/git/rawtty.git/
Log | Files | Refs

commit 13c2ad6a338310f058e7637050a8fa870a0b6eb1
parent 323c6ecd3e909d81832443f44729507ad1f5d9a2
Author: Tomas Hlavaty <tom@logand.com>
Date:   Fri, 15 Feb 2013 21:16:42 +0100

tweak executables

Diffstat:
MMakefile | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,10 +1,12 @@ all: rawtty rawttytestchild rawtty: rawtty.c - $(CC) -o $@ $@.c + $(CC) -Os -o $@ $@.c + strip $@ rawttytestchild: rawttytestchild.c - $(CC) -o $@ $@.c + $(CC) -Os -o $@ $@.c + strip $@ clean: rm -f rawtty rawttytestchild