summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2022-03-23 20:45:20 -0600
committerBryson Steck <steck.bryson@gmail.com>2022-03-23 20:45:20 -0600
commit59e6c09a8608f6fdb47b3ad38338aa0cabe94d9a (patch)
tree7c407d207604f5aeb0674ccee8ecfeffe941f9ab /Makefile
parente9490940d01e7ab2b9479a38325a60be096787af (diff)
downloaduirc-59e6c09a8608f6fdb47b3ad38338aa0cabe94d9a.tar
uirc-59e6c09a8608f6fdb47b3ad38338aa0cabe94d9a.tar.gz
uirc-59e6c09a8608f6fdb47b3ad38338aa0cabe94d9a.tar.bz2
curl now works
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7458674..590a273 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ include config.mk
SRC = uirc.c
uirc: ${SRC}
- ${CC} -o uirc -O ${SRC} -lm
+ ${CC} -l curl -o uirc -O ${SRC} -lm
debug: uirc
${CC} -g -o d_uirc -O ${SRC} -lm