Use a proper file extension for C++
These don't exist on Linux, but they are a fun fiction.
This commit is contained in:
parent
694ef2a466
commit
33c73c8060
4
Makefile
4
Makefile
|
@ -3,11 +3,11 @@ all: capture playback
|
||||||
bin:
|
bin:
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
|
|
||||||
capture: bin capture.c
|
capture: bin capture.cpp
|
||||||
g++ capture.c -o bin/capture
|
g++ capture.c -o bin/capture
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -Rf bin
|
rm -Rf bin
|
||||||
|
|
||||||
playback: bin playback.c
|
playback: bin playback.cpp
|
||||||
g++ playback.c -o bin/playback
|
g++ playback.c -o bin/playback
|
||||||
|
|
Loading…
Reference in New Issue