Add basic Makefile and output directory

This commit is contained in:
Eli Ribble 2021-08-27 10:56:44 -06:00
parent ccc44b676c
commit 165623fa20
2 changed files with 11 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
bin/
ve/

10
Makefile Normal file
View 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