forked from ualberta/institutional-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·95 lines (79 loc) · 3.9 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
BOOTSTRAP = ./compiled/css/ualberta.css
BOOTSTRAP_LESS = ./less/ualberta.less
BOOTSTRAP_RESPONSIVE = ./docs/assets/css/bootstrap-responsive.css
BOOTSTRAP_RESPONSIVE_LESS = ./less_docs/responsive.less
PROTOTYPE = ./prototype/css/ualberta.css
PROTOTYPE_LESS = ./less/ualberta.less
PAGESDIR = ../institutional-framework-pages
PRODDIR = ../production
DATE=$(shell date +%I:%M%p)
CHECK=\033[32m✔\033[39m
HR=\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#
#
# BUILD DOCS
#
build:
@echo "\n${HR}"
@echo "Building Bootstrap..."
@echo "${HR}\n"
@jshint js/*.js --config js/.jshintrc
@jshint js/tests/unit/*.js --config js/.jshintrc
@echo "Running JSHint on javascript... ${CHECK} Done"
@recess --compile ${BOOTSTRAP_LESS} > ${BOOTSTRAP}
@recess --compile ./less/ualberta-ie7.less > ./compiled/css/ualberta-ie7.css
@recess --compile ./less/ualberta-ie7.less > ./compiled/css/ualberta-ie7.css
@recess --compile ./less/faculty.less > ./css/faculty.css
@echo "Compiling LESS with Recess... ${CHECK} Done"
@cat js/bootstrap-transition.js js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js js/bootstrap-affix.js > compiled/js/bootstrap.js
@uglifyjs -nc compiled/js/bootstrap.js > compiled/js/bootstrap.min.js
@echo "Compiling and minifying javascript... ${CHECK} Done"
@echo "\n${HR}"
@echo "Bootstrap successfully built at ${DATE}."
#
# BUILD LESS ONLY
#
less:
@recess --compile ${BOOTSTRAP_LESS} > ${BOOTSTRAP}
@recess --compile ./less/ualberta-ie7.less > ./compiled/css/ualberta-ie7.css
@recess --compile ./less/ualberta-ie.less > ./compiled/css/ualberta-ie-less.css
@echo "Compiling LESS with Recess... ${CHECK} Done"
#
# COMPILE PRODUCTION BRANCH
#
production:
@mkdir -p ${PRODDIR}
@recess --compile ${PROTOTYPE_LESS} > ./css/ualberta.css
@recess --compile ./less/ualberta-ie7.less > ./css/ualberta-ie7.css
@recess --compile ./less/ualberta-ie.less > ./css/ualberta-ie-less.css
@cp -r ./css ${PRODDIR}
@echo "Compiling LESS with Recess... ${CHECK} Done"
@mkdir -p ${PRODDIR}/js
@cat js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js js/bootstrap-affix.js > ${PRODDIR}/js/bootstrap.js
@uglifyjs -nc ${PRODDIR}/js/bootstrap.js > ${PRODDIR}/js/bootstrap.min.js
@echo "Minifying and copying javascript... ${CHECK} Done"
#
# COMPILE GH-PAGES
#
ghpages:
@mkdir -p ${PAGESDIR}
@recess --compile ${PROTOTYPE_LESS} > ./css/ualberta.css
@recess --compile ./less/ualberta-ie7.less > ./css/ualberta-ie7.css
@recess --compile ./less/ualberta-ie.less > ./css/ualberta-ie-less.css
@cp -r ./css ${PAGESDIR}
@echo "Compiling LESS with Recess... ${CHECK} Done"
@mkdir -p ${PAGESDIR}/js
@cat js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js js/bootstrap-affix.js > ${PAGESDIR}/js/bootstrap.js
@uglifyjs -nc ${PAGESDIR}/js/bootstrap.js > ${PAGESDIR}/js/bootstrap.min.js
@echo "Minifying and copying javascript... ${CHECK} Done"
@cp ./*.html ${PAGESDIR}/
@cp -r ./img ${PAGESDIR}
@cp -r ./font ${PAGESDIR}
@mv ${PAGESDIR}/homepage.html ${PAGESDIR}/index.html
@echo "Copying html files... ${CHECK} Done"
#
# WATCH LESS FILES
#
watch:
@echo "Watching less files..."; \
watchr -e "watch('less/.*\.less') { system 'make less' }"
.PHONY: watch ghpages less