-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
40 lines (30 loc) · 836 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
38
39
40
# GNU Make file for Headstar E-Access Bulletin.
help:
# Targets: e-access, bulletins, install, ssh
e-access:
cd perl/; perl e-access.pl
bulletins:
cd perl/; perl bulletins.pl
install-cpanminus:
cpan -i App::cpanminus
install:
# (brew install perl) - mac os x.
# http://www.cpan.org/modules/INSTALL.html
# http://search.cpan.org/dist/HTML-Parser/lib/HTML/Entities.pm
cpanm HTML::Entities
npm-install:
npm install grunt-cli -g
npm install grunt grunt-exec grunt-notify
npm install grunt-htmlhint grunt-contrib-jshint grunt-contrib-validate-xml
cat-log:
cat perl/logs/00e-access.log
#cat perl/logs/00bulletins.log
version:
node --version
npm --version
grunt --version
# SSH or Fugu (sftp): http://rsug.itd.umich.edu/software/fugu/
ssh:
# cd /home/jaxx/public_html/eab
#End.