init
This commit is contained in:
commit
f8e9c32b4b
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
command-capture
|
13
Makefile
Normal file
13
Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
all: command-capture run
|
||||
|
||||
command-capture: main.c
|
||||
clang -O2 -o command-capture main.c
|
||||
|
||||
run: execap
|
||||
rm -rf test
|
||||
./command-capture `which clang` -o test test.c
|
||||
|
||||
clean:
|
||||
rm -rf command-capture test
|
||||
|
||||
.PHONY: all execap clean
|
Loading…
Reference in New Issue
Block a user