symkey/Makefile

11 lines
107 B
Makefile
Raw Normal View History

all: capture
bin:
mkdir -p bin
capture: bin capture.c
gcc capture.c -o bin/capture
clean:
rm -Rf bin