6 lines
85 B
Makefile
6 lines
85 B
Makefile
CC=gcc
|
|
CFLAGS=-lcurl -lcjson
|
|
|
|
ip-lookup: main.c
|
|
$(CC) -o ip-lookup main.c $(CFLAGS)
|