diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-03-24 15:00:05 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-03-24 15:00:05 -0600 |
commit | 1a44f91a4a33e3ea8b9127ee2a7f2589adab6818 (patch) | |
tree | b04a13ac67de85300bca94d4d8338bb40a7c5d6d /Makefile | |
parent | 2d556f161628fd8d91b165ec3a50a51665ade5bf (diff) | |
download | uirc-1a44f91a4a33e3ea8b9127ee2a7f2589adab6818.tar uirc-1a44f91a4a33e3ea8b9127ee2a7f2589adab6818.tar.gz uirc-1a44f91a4a33e3ea8b9127ee2a7f2589adab6818.tar.bz2 |
added BSD compatibility
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} -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 |