From 96559b7870450517711bb8ccf7c5bf0b9fba8df9 Mon Sep 17 00:00:00 2001 From: Bryson Steck Date: Tue, 15 Mar 2022 10:52:23 -0600 Subject: trying to read license from file instead --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3