This repository has been archived by the owner on Jun 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathMakefile
152 lines (123 loc) · 4.12 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
.PHONY: default setup prepare build build-css release
default: dev
# Default settings
nodebin := node_modules/.bin
main := src/Main.elm
port := 8000
# Automatic settings
UNAME := $(shell uname)
PATH := $(nodebin):$(PATH)
JS_PACKAGE_MNGR := $(shell which yarn || which npm)
################################################################################
# Setup
################################################################################
# Prepare release dependencies
setup:
git submodule init
git submodule update
$(JS_PACKAGE_MNGR) install
elm-package install -y
chmod +x node_modules/.bin/* stats/*.sh
# Prepare all dependencies
setup-tests: setup
cd tests
elm-package install -y
# In case you prefer to use your own binaries, must run before setup
prefer-native:
rm -rf node_modules/elm node_modules/elm-format
mkdir -p node_modules/elm node_modules/elm-format
echo "{ \"name\": \"elm\", \"version\": \"0.18.0\" }" > node_modules/elm/package.json
echo "{ \"name\": \"elm-format\", \"version\": \"0.6.1-alpha\" }" > node_modules/elm-format/package.json
################################################################################
# Compile
################################################################################
list_instances = ps ax | grep -E "(elm\-make|webpack\-dev\-server)" | grep -v grep
# Compile-once
compile:
ifneq ($(shell $(list_instances)),)
$(error Probably already building)
endif
(elm-make $(main) && rm -f index.html && ./stats/succeedBuild.sh) || \
(./stats/increaseFailedBuilds.sh && false)
# Keep compiling
compile-loop:
-while :; do $(MAKE) compile; sleep 2; done
################################################################################
# Build
################################################################################
# Clean build enviroment
prepare:
rm -rf build/ && \
mkdir -p build/
# Update index.html and compile css
build: prepare
cat static/index.html > build/index.html
elm-css src/Core/Stylesheets.elm -o static/css
# Add CSS hot-reloader
build-css: prepare
awk '/\<\/body/ \
{print \
"\<script type\=\"text\/javascript\" src\=\"vendor\/cssrefresh\.js\"\> \
\<\/script\> \
"}1' \
static/index.html > build/index.html
elm-css src/Core/Stylesheets.elm -o static/css
# Creates release.tar.gz
release: build
TARGET_ENV='build' webpack
tar -zcf release.tar.gz build/ && \
mv release.tar.gz build/
################################################################################
# Dev
################################################################################
# For dev, first we compile the whole app, and only then we watch.
dev: compile build watch
# Add annoying css hot reloader. Useful when editing styles.
dev-css: compile build-css watch
# Starts webpack server with inline & hot-reload
watch:
ifneq ($(shell $(list_instances)),)
$(error Probably already running)
endif
webpack-dev-server \
--progress \
--cache false \
--port $(port)
################################################################################
# Tools
################################################################################
# Starts webpack server without inline nor hot-reload
host:
webpack-dev-server \
--progress \
--cache false \
--inline false \
--hot false \
--port $(port)
lint:
elm-format --validate src/
################################################################################
# Test
################################################################################
test:
elm-test
test-quick:
sed 's/10/1/g' tests/Config.elm > tests/Config.elm.tmp && \
mv tests/Config.elm.tmp tests/Config.elm
$(MAKE) test
git checkout tests/Config.elm
test-long:
sed 's/10/100/g' tests/Config.elm > tests/Config.elm.tmp && \
mv tests/Config.elm.tmp tests/Config.elm
$(MAKE) test
git checkout tests/Config.elm
test-loop:
- while :; do $(MAKE) test; sleep 2; done
################################################################################
# Clean
################################################################################
clean:
rm -rf build/* && \
rm -f *.html release.tar.gz && \
git clean -id && \
git checkout tests/Config.elm