From 3bc4e4adfb0e15b4e089d2035f4f8d09e613c2b5 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Thu, 21 Apr 2022 14:14:18 -0600 Subject: changed O flag, removed unneeded libraries --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index af9a944..fbf7414 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,10 @@ include config.mk SRC = uirc.c uirc: ${SRC} - ${CC} ${OPTIONS} -l curl -o uirc -O ${SRC} -lm + ${CC}${OPTIONS} -lcurl -lm -o uirc -O3 ${SRC} debug: uirc - ${CC} -g ${OPTIONS} -l curl -o d_uirc -O ${SRC} -lm + ${CC} -g${OPTIONS} -lcurl -lm -o d_uirc -O3 ${SRC} gdb d_uirc rm d_uirc -- cgit v1.2.3