tt

A simple terminal timer
git clone git://git.laack.co/tt.git
Log | Files | Refs | README | LICENSE

Makefile (123B)


      1 build:
      2 	tcc main.c -o tt
      3 
      4 run: build
      5 	./tt 60
      6 
      7 clean:
      8 	rm tt
      9 
     10 
     11 install: build
     12 	cp tt /usr/local/bin
     13 
     14 full: build run clean