summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2022-03-15 10:52:23 -0600
committerBryson Steck <steck.bryson@gmail.com>2022-03-15 10:52:23 -0600
commit96559b7870450517711bb8ccf7c5bf0b9fba8df9 (patch)
tree2bac45fff0006ab2a48b8e4ba1bb2a00f78e2328 /Makefile
parente872bca0e085e6ef7b91e21a2d9399a8db5414df (diff)
downloaduirc-96559b7870450517711bb8ccf7c5bf0b9fba8df9.tar
uirc-96559b7870450517711bb8ccf7c5bf0b9fba8df9.tar.gz
uirc-96559b7870450517711bb8ccf7c5bf0b9fba8df9.tar.bz2
trying to read license from file instead
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7063fba..236977f 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ include config.mk
SRC = uirc.c
uirc: ${SRC}
- ${CC} -o uirc -O ${SRC}
+ ${CC} -DLICENSE_DIR='"./"' -o uirc -O ${SRC}
install: uirc
mkdir -p ${PREFIX}
@@ -21,7 +21,7 @@ uninstall:
stb:
@echo "It is best to download the stb library from your system's package manager."
- @echo "Press ENTER to manually install the stb headers needed. Otherwise, quit with ^C"
+ @echo "Press ENTER to manually install the stb headers needed instead. Otherwise, quit with ^C"
@read
mkdir -p ${INCLUDE_PREFIX}/stb
wget https://raw.githubusercontent.com/nothings/stb/master/stb_image.h -P /usr/include/stb/stb_image.h