This commit is contained in:
Pin
2022-03-31 19:04:00 -04:00
parent ffec14bf49
commit 2be6bc849f

View File

@@ -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