12 lines
251 B
Makefile
12 lines
251 B
Makefile
#!make
|
|
|
|
default: build
|
|
|
|
.PHONY: build install
|
|
|
|
build:
|
|
@./scripts/build.sh && echo "\n\n\n\nRun 'source ~/.bashrc' to re-evaluate the completions"
|
|
|
|
install: build
|
|
@./scripts/install.sh && echo "\n\n\n\nRun 'source ~/.bashrc' to complete the install"
|