-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
33 lines (30 loc) · 1.19 KB
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
################################################################################
# Default target: make all
################################################################################
.PHONY: all
all:
@echo "Try make help"
.PHONY: install
install:
./install.sh
################################################################################
# Clean: removes everything that can be rebuilt
################################################################################
.PHONY: clean
clean:
rm -Rf *~
################################################################################
# User help menu
################################################################################
.PHONY: help
help:
@echo "################################################################### ";
@echo "This is the Makefile for installing my dotfiles";
@echo "make help shows this extra information";
@echo "";
@echo "Usage: make target";
@echo "target is one of:";
@echo " help : show this help message";
@echo " all : nothing";
@echo " install : install the dotfiles";
@echo " clean : removes everything that can be rebuilt";