From 2be6bc849f6422c70a3f4a667a26d3b26ddb58ab Mon Sep 17 00:00:00 2001 From: Pin Date: Thu, 31 Mar 2022 19:04:00 -0400 Subject: [PATCH] wip --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index b567a2b..0c8475b 100644 --- a/Makefile +++ b/Makefile @@ -6,13 +6,13 @@ OUTPUT_BIN = ${OUTPUT_DIR}/PROG OUTPUT = -o ${OUTPUT_BIN} build: output_dir - gcc -Wall -std=gnu99 ${RELEASE_ARGS} ${SOURCES} ${LIBRARIES} ${OUTPUT:PROG=mash} + gcc -Wall -std=gnu99 ${RELEASE_ARGS} ${SOURCES} ${OUTPUT:PROG=mash} ${LIBRARIES} debug: output_dir - gcc -Wall -std=gnu99 -g ${SOURCES} ${LIBRARIES} ${OUTPUT:PROG=mash} + gcc -Wall -std=gnu99 -g ${SOURCES} ${OUTPUT:PROG=mash} ${LIBRARIES} output_dir: mkdir -p ${OUTPUT_DIR} -install: build - mv ${OUTPUT:PROG=mash} /usr/sbin/mash +install: + mv ${OUTPUT_BIN:PROG=mash} /usr/sbin/mash