Use a proper file extension for C++

These don't exist on Linux, but they are a fun fiction.
This commit is contained in:
Eli Ribble 2022-09-09 15:31:09 -06:00
parent 694ef2a466
commit 33c73c8060
3 changed files with 2 additions and 2 deletions

View File

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