symkey/Makefile
Eli Ribble 33c73c8060 Use a proper file extension for C++
These don't exist on Linux, but they are a fun fiction.
2024-07-30 19:44:32 -07:00

13 lines
178 B
Makefile

all: capture playback
bin:
mkdir -p bin
capture: bin capture.cpp
g++ capture.c -o bin/capture
clean:
rm -Rf bin
playback: bin playback.cpp
g++ playback.c -o bin/playback