summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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