From 1430c2f33cbe6cfbacd22ef198c2708c6748a86f Mon Sep 17 00:00:00 2001 From: Wizzard Date: Mon, 26 Feb 2024 01:27:22 -0500 Subject: [PATCH] Add Makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2dd43b4 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +CC=gcc +CFLAGS=-lcurl -lcjson + +ip-lookup: main.c + $(CC) -o ip-lookup main.c $(CFLAGS)