From 1a44f91a4a33e3ea8b9127ee2a7f2589adab6818 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Thu, 24 Mar 2022 15:00:05 -0600 Subject: added BSD compatibility --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index d0b32eb..34d7f1c 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,10 @@ include config.mk SRC = uirc.c uirc: ${SRC} - ${CC} -l curl -o uirc -O ${SRC} -lm + ${CC} ${OPTIONS} -l curl -o uirc -O ${SRC} -lm debug: uirc - ${CC} -g -l curl -o d_uirc -O ${SRC} -lm + ${CC} -g ${OPTIONS} -l curl -o d_uirc -O ${SRC} -lm gdb d_uirc rm d_uirc -- cgit v1.2.3