config

OpenBSD system configuration
git clone git://jacobedwards.org/config
Log | Files | Refs | README

commit fdbc49ec5f8cea29ff55d450a6b2dbc8a945fea2
parent 7f3b88debd51e4e8a4d9b14217f348717420ed17
Author: Jacob R. Edwards <jacobouno@protonmail.com>
Date:   Fri,  6 Nov 2020 12:06:01 -0800

Add Makefile and README

Using make(1) rather than stow(1) directly allows me to add other
files, like a README, without any fuss aswell as do more complex
things down the road.

Diffstat:
AMakefile | 9+++++++++
AREADME | 7+++++++
2 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -0,0 +1,9 @@ +MODULES = */ + +all: install + +install: + stow -S ${MODULES} + +uninstall: + stow -D ${MODULES} diff --git a/README b/README @@ -0,0 +1,7 @@ +Unix configuration files + +This repository, as the title states, contains +configuration files for unix-like systems. For it +to work correctly you must place it within your +$HOME directory and have the $XDG_CONFIG_HOME +environment variable set to `$HOME/.config'.