diff options
author | Bryson Steck <steck.bryson@gmail.com> | 2022-03-15 10:52:23 -0600 |
---|---|---|
committer | Bryson Steck <steck.bryson@gmail.com> | 2022-03-15 10:52:23 -0600 |
commit | 96559b7870450517711bb8ccf7c5bf0b9fba8df9 (patch) | |
tree | 2bac45fff0006ab2a48b8e4ba1bb2a00f78e2328 /Makefile | |
parent | e872bca0e085e6ef7b91e21a2d9399a8db5414df (diff) | |
download | uirc-96559b7870450517711bb8ccf7c5bf0b9fba8df9.tar uirc-96559b7870450517711bb8ccf7c5bf0b9fba8df9.tar.gz uirc-96559b7870450517711bb8ccf7c5bf0b9fba8df9.tar.bz2 |
trying to read license from file instead
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |