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