mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 21:03:59 +01:00
51 lines
2.0 KiB
Makefile
51 lines
2.0 KiB
Makefile
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
# Copyright (C) 2018 Donovan Glover
|
|
#
|
|
# Usage:
|
|
# make Defaults to `make install`
|
|
# make install Installs dotfiles
|
|
# make uninstall Uninstalls dotfiles
|
|
# make prune Removes stale links
|
|
|
|
verbose ?= 2
|
|
NS_REPO_PATH := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
|
NS_STOW_OPTIONS := --dir="${NS_REPO_PATH}" --target="${HOME}" --no-folding --verbose=${verbose}
|
|
NS_STOW_PACKAGES := $(wildcard */)
|
|
NS_SUCCESS := "SUCCESS: Stow command executed succesfully!"
|
|
NS_STOW_COMMAND := $(if ${package},ns_stow_package,ns_stow_all)
|
|
|
|
ns_stow_package = \
|
|
echo "STATUS: Found package variable. Stow operation will be performed if it is a valid directory..."; \
|
|
test -d ${package} && \
|
|
(stow -${1} ${package} ${NS_STOW_OPTIONS} && \
|
|
echo ${NS_SUCCESS}) || \
|
|
echo "FAILURE: Not a valid target directory."
|
|
|
|
ns_stow_all = \
|
|
echo "STATUS: No package variable given. Performing stow operation on all directories..."; \
|
|
$(foreach package,$(NS_STOW_PACKAGES),stow -${1} $(package) ${NS_STOW_OPTIONS} &&) \
|
|
echo ${NS_SUCCESS}
|
|
|
|
.PHONY: install
|
|
install:
|
|
@$(call ${NS_STOW_COMMAND},S)
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|
|
@$(call ${NS_STOW_COMMAND},D)
|
|
|
|
.PHONY: prune
|
|
prune:
|
|
@$(call ${NS_STOW_COMMAND},R)
|
|
|
|
# ========================
|
|
# ======= systemd ========
|
|
# ========================
|
|
|
|
NS_SYSTEMD_SERVICES := ssh-agent urxvtd mpd
|
|
|
|
.PHONY: systemd-enable-now
|
|
systemd-enable-now:
|
|
@$(foreach service,${NS_SYSTEMD_SERVICES},systemctl --user enable --now ${service}.service;)
|
|
@echo "SUCCESS: Enabled the following services: ${NS_SYSTEMD_SERVICES}"
|