morse

Morse interpreter using X key events
git clone https://git.sinitax.com/sinitax/morse
Log | Files | Refs | LICENSE | sfeed.txt

Makefile (83B)


      1LDLIBS = -lX11
      2
      3all: morse
      4
      5clean:
      6	rm -f morse
      7
      8morse: morse.c
      9
     10.PHONY: all clean