rawtty

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

Makefile (184B)


      1 all: rawtty rawttytestchild
      2 
      3 rawtty: rawtty.c
      4 	$(CC) -Os -o $@ $@.c
      5 	strip $@
      6 
      7 rawttytestchild: rawttytestchild.c
      8 	$(CC) -Os -o $@ $@.c
      9 	strip $@
     10 
     11 clean:
     12 	rm -f rawtty rawttytestchild