Add basic Makefile and output directory
This commit is contained in:
parent
ccc44b676c
commit
165623fa20
2 changed files with 11 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
|
bin/
|
||||||
ve/
|
ve/
|
||||||
|
|
10
Makefile
Normal file
10
Makefile
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
all: capture
|
||||||
|
|
||||||
|
bin:
|
||||||
|
mkdir -p bin
|
||||||
|
|
||||||
|
capture: bin capture.c
|
||||||
|
gcc capture.c -o bin/capture
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -Rf bin
|
Loading…
Add table
Add a link
Reference in a new issue