11 lines
107 B
Makefile
11 lines
107 B
Makefile
|
all: capture
|
||
|
|
||
|
bin:
|
||
|
mkdir -p bin
|
||
|
|
||
|
capture: bin capture.c
|
||
|
gcc capture.c -o bin/capture
|
||
|
|
||
|
clean:
|
||
|
rm -Rf bin
|