10 lines
168 B
Makefile
10 lines
168 B
Makefile
HOST := google.com
|
|
|
|
format:
|
|
@astyle --style=java --recursive *.c,*.h -n || true
|
|
|
|
build: format
|
|
@gcc -o sping sping.c -Wall -lm
|
|
|
|
run: build
|
|
@sudo ./sping $(HOST) -c 6
|