diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-04-21 14:14:18 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-04-21 14:14:18 -0600 |
commit | 3bc4e4adfb0e15b4e089d2035f4f8d09e613c2b5 (patch) | |
tree | cba3e0d7be2e9a14dbbcfe0c45c26ece33d742b0 /Makefile | |
parent | 40ef9f33ba16265e7f0dddb625fa94ad4d2b5afe (diff) | |
download | uirc-3bc4e4adfb0e15b4e089d2035f4f8d09e613c2b5.tar uirc-3bc4e4adfb0e15b4e089d2035f4f8d09e613c2b5.tar.gz uirc-3bc4e4adfb0e15b4e089d2035f4f8d09e613c2b5.tar.bz2 |
changed O flag, removed unneeded libraries
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |