mirror of
https://github.com/Wojtek242/rwmstatus.git
synced 2024-11-21 23:25:26 +01:00
26 lines
543 B
Makefile
26 lines
543 B
Makefile
# See LICENSE file for copyright and license details.
|
|
|
|
include config.mk
|
|
|
|
all: ${NAME}
|
|
|
|
${NAME}:
|
|
@echo cargo build --release
|
|
@cargo build --release
|
|
|
|
clean:
|
|
@echo cleaning
|
|
@cargo clean
|
|
|
|
install:
|
|
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
|
|
@mkdir -p ${DESTDIR}${PREFIX}/bin
|
|
@cp -f target/release/${NAME} ${DESTDIR}${PREFIX}/bin
|
|
@chmod 755 ${DESTDIR}${PREFIX}/bin/${NAME}
|
|
|
|
uninstall:
|
|
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
|
|
@rm -f ${DESTDIR}${PREFIX}/bin/${NAME}
|
|
|
|
.PHONY: all clean install uninstall
|