Move path definitions forward in _bashrc
[dotfiles-framework.git] / Makefile
1 # ~/.dotfiles/Makefile
2 #
3 # all:
4 # Link all the files we have in this directory into the parent.
5 #
6 # clean:
7 # Clean editted files.
8 #
9 # Original by Steve Kemp (http://www.steve.org.uk)
10
11 all: fixup
12
13 clean:
14         find . -name '*~' -exec rm -f \{\} \;
15         find . -name '.#*' -exec rm -f \{\} \;
16
17 diff:
18         git diff
19
20 fixup: update
21         ./fixup.sh
22
23 update:
24         ./update.sh
25
26 merge:
27         ./merge.sh
28
29 override:
30         ./fixup.sh --force
31
32 # Print a diff between the local installation and .dotfiles
33 # i.e. What changes will `make override' effect
34 localdiff:
35         ./diff.sh --local
36
37 # Save a diff between .dotfiles and the local installation
38 # i.e. What specialization do I want compared to the central .dotfiles
39 localpatch:
40         ./diff.sh > local.patch
41
42 # No Remove this computer from the auto-updates list
43 disconnect:
44         ./disconnect.sh