-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakefile
More file actions
32 lines (25 loc) · 807 Bytes
/
makefile
File metadata and controls
32 lines (25 loc) · 807 Bytes
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
git pull################################################################
## Synchronize web site on the server
include ${RSAT}/makefiles/util.mk
MAKEFILE=makefile
################################################################
## Clean temporary files created by emacs
clean:
find . -name '*~' -exec rm {} \;
find . -name '.#*' -exec rm {} \;
find . -name '.DS_Store' -exec rm {} \;
################################################################
## Publish on the web site
TO_SYNC=*
publish: clean
git push
################################################################
## Browse the Web site
#BROWSER=firefox
LOCAL=README.html
local:
open ${LOCAL}
#WEB_URL=http://pedagogix-tagc.univ-mrs.fr/courses/SBBCU16L_cisreg
WEB_URL=https://rsat-doc.github.io/managing-RSAT/
web:
open ${WEB_URL}