symkey/Makefile
Eli Ribble 6ed5162e8e Add playback implementation in C.
It doesn't do anything but read lines yet.
2024-07-30 19:44:32 -07:00

13 lines
174 B
Makefile

all: capture playback
bin:
mkdir -p bin
capture: bin capture.c
gcc capture.c -o bin/capture
clean:
rm -Rf bin
playback: bin playback.c
gcc playback.c -o bin/playback