WIP move to makefile
This commit is contained in:
parent
53378083fa
commit
ab7e2f97fa
20
Makefile
Normal file
20
Makefile
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
MAKEFILE_PATH ?= $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
||||||
|
ALERT_AGREEMENT_FILE ?= "$(MAKEFILE_PATH)/.agreed-to-erasing-files.lock"
|
||||||
|
|
||||||
|
default: install
|
||||||
|
|
||||||
|
$(ALERT_AGREEMENT_FILE):
|
||||||
|
@echo -e "Running this script may delete existing personal configuration files.\n" \
|
||||||
|
"Please view this script's source, fully understand it, and backup any\n" \
|
||||||
|
"files before continuing.\n" \
|
||||||
|
"Seriously. Like... entire directories. Just gone."
|
||||||
|
|
||||||
|
# RESPONSE=$(shell bash -c 'read -r -p "Are you sure you want to continue? [y/N] "')
|
||||||
|
# @if [[ $response =~ ^(yes|y)$ ]]; then
|
||||||
|
# @echo "agreed" > "$ALERT_AGREEMENT_FILE"
|
||||||
|
# @else
|
||||||
|
# @exit 1
|
||||||
|
# @fi
|
||||||
|
|
||||||
|
install: $(ALERT_AGREEMENT_FILE)
|
||||||
|
@echo "Installed!"
|
|
@ -209,7 +209,7 @@ endfun
|
||||||
autocmd BufWritePre,FileWritePre * :call <SID>AutoMakeDirectory()
|
autocmd BufWritePre,FileWritePre * :call <SID>AutoMakeDirectory()
|
||||||
|
|
||||||
if !exists("g:make_args")
|
if !exists("g:make_args")
|
||||||
let g:make_args="run"
|
let g:make_args="default"
|
||||||
endif
|
endif
|
||||||
fun! RunMake()
|
fun! RunMake()
|
||||||
split
|
split
|
||||||
|
|
|
@ -76,7 +76,10 @@ Here are some bullet points on my workflow as a Web Developer:
|
||||||
|
|
||||||
## To Do and Improvements
|
## To Do and Improvements
|
||||||
|
|
||||||
* Unify all the common variables... somehow?
|
* Unify all the common variables... somehow? (and use templates and `envsubst`?)
|
||||||
|
* Makefile as setup script
|
||||||
|
* Vim `<leader>m` binding should be able to run arbitrary commands, not just
|
||||||
|
`make`
|
||||||
* Dunst and notifications
|
* Dunst and notifications
|
||||||
* Vimux
|
* Vimux
|
||||||
* urxvt reizing
|
* urxvt reizing
|
||||||
|
|
Reference in a new issue