summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBryson Steck <steck.bryson@gmail.com>2022-03-14 14:31:03 -0600
committerBryson Steck <steck.bryson@gmail.com>2022-03-14 14:31:03 -0600
commite872bca0e085e6ef7b91e21a2d9399a8db5414df (patch)
tree70030e3e7af2126877f5cd3703d51b21b52c9967 /Makefile
parentf035426e7f239a414f89159f4810f762c98cd37f (diff)
downloaduirc-e872bca0e085e6ef7b91e21a2d9399a8db5414df.tar
uirc-e872bca0e085e6ef7b91e21a2d9399a8db5414df.tar.gz
uirc-e872bca0e085e6ef7b91e21a2d9399a8db5414df.tar.bz2
fix makefile, header include
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 52bc088..7063fba 100644
--- a/Makefile
+++ b/Makefile
@@ -20,10 +20,10 @@ uninstall:
test -s ${INCLUDE_PREFIX}/uirc || rm -r ${INCLUDE_PREFIX}/uirc
stb:
- @echo "It is best to download the stb library from your system's package manager.
+ @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"
@read
- mkdir -p ${INCLUDE_PREFIX}/uirc
- wget https://raw.githubusercontent.com/nothings/stb/master/stb_image.h -P /usr/include/uirc/stb_image.h
+ mkdir -p ${INCLUDE_PREFIX}/stb
+ wget https://raw.githubusercontent.com/nothings/stb/master/stb_image.h -P /usr/include/stb/stb_image.h
.PHONY: uirc install stb