7 lines
87 B
Makefile
7 lines
87 B
Makefile
main: main.c
|
|
mkdir -p build
|
|
gcc -o build/main main.c -lcurl
|
|
|
|
run: main
|
|
./build/main
|