-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
37 lines (32 loc) · 858 Bytes
/
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
34
35
36
37
# +-----------------+-------------------------------------------------
# | Standard Targets|
# +-----------------+
default:
cd assignments; make default
cd handouts; make default
cd labs; make default
cd misc; make default
cd readings; make default
cd sandbox; make default
clean:
cd assignments; make clean
cd handouts; make clean
cd labs; make clean
cd misc; make clean
cd readings; make clean
cd resources; make clean
cd sandbox; make clean
# +--------------+----------------------------------------------------
# | Fun with git |
# +--------------+
# Get the status of files without worrying about the typical locally
# generated files.
status:
git status \
| grep -v 'html$$' \
| grep -v 'docbook$$' \
| grep -v 'ps$$' \
| grep -v 'pdf$$'
# Update the repository. (Yeah, I still think in terms of Subversion)
update:
git pull