rmenu/Makefile

27 lines
588 B
Makefile
Raw Normal View History

# RMenu Installation/Deployment Configuration
CARGO=cargo
FLAGS=--release
DEST=$(HOME)/.config/rmenu
2023-08-08 01:07:20 +02:00
INSTALL=$(CARGO_PATH)/bin
install: build deploy
deploy:
mkdir -p ${DEST}
2023-08-08 01:07:20 +02:00
cp -vf ./target/release/rmenu ${INSTALL}/rmenu
cp -vf ./target/release/desktop ${DEST}/drun
cp -vf ./target/release/run ${DEST}/run
cp -vf ./rmenu/public/config.yaml ${DEST}/config.yaml
cp -vf ./rmenu/public/default.css ${DEST}/style.css
build: build-rmenu build-plugins
build-rmenu:
${CARGO} build -p rmenu ${FLAGS}
build-plugins:
${CARGO} build -p run ${FLAGS}
${CARGO} build -p desktop ${FLAGS}