-
Notifications
You must be signed in to change notification settings - Fork 26
/
Makefile
251 lines (187 loc) · 8.29 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
# Quick start, install stack
# ( https://github.com/commercialhaskell/stack/blob/master/doc/install_and_upgrade.md )
#
# then use:
#
# make test
#
# this will build the library and run the tests.
#
# To build everything:
#
# make really-all
# you can use stack commands directly, but be aware that just using
# stack without the Makefile won't regenerate the AstInternal.hs from
# the .ag files automatically (you only need this if you alter the .ag
# files or if you are working on the pre/processing code for the
# AstInternal.hs
# build tested with ghc 7.10.2 on 181115
# also tested recently with 7.8.4
# probably needs a few simple tweaks to get working with 7.6.3
##############################################################################
# the default target
# the main use of this target is to check everything still compiles
# successfully
.PHONY : all
.DEFAULT : all
all : examples test
# the test target can be used when working on hssqlppp and also
# doesn't need postgres client drivers
.PHONY : test
test : hssqlppp
stack test hssqlppp hssqlppp-th --test-arguments --hide-successes
.PHONY : test-hssqlppp
test-hssqlppp : hssqlppp
stack test hssqlppp --test-arguments --hide-successes
# if you need some other combination of targets please add them to the
# makefile
# this does everything
.PHONY : really-all
really-all : test website
stack build
##############################################################################
# building the components
# the project is separated into several separate cabal projects. Some
# of these are intended to end up on hackage: hssqlppp, hssqlppp-th
# and hssqlppp-pg, and the others are just for developing hssqlppp
# itself
.PHONY : hssqlppp
hssqlppp : hssqlppp/src/Database/HsSqlPpp/Internals/AstInternal.hs
stack build hssqlppp
.PHONY : hssqlppp-th
hssqlppp-th : hssqlppp
stack build hssqlppp-th
.PHONY : hssqlppp-pg
hssqlppp-pg : hssqlppp-th
stack build hssqlppp-pg
.PHONY : examples
examples : hssqlppp
stack build hssqlppp-examples
##############################################################################
# generated files
# hssqlppp/src/Database/HsSqlPpp/Internals/AstInternal.hs
# generated from the .ag files under hssqlppp/src/Database/HsSqlPpp/Internals/
# specific rules for generated file astinternal.hs
AG_FILES = $(shell find hssqlppp/src -iname '*ag')
hssqlppp/src/Database/HsSqlPpp/Internals/AstInternal.hs : $(AG_FILES)
# reorder slightly as workaround - don't want to put
# uuagc as a dependency of hssqlppp
stack build hssqlppp-postprocess-uuagc:PostprocessUuagc
stack exec uuagc -- -dcfspwm \
-P hssqlppp/src/Database/HsSqlPpp/Internals/ \
--lckeywords --doublecolons --genlinepragmas \
hssqlppp/src/Database/HsSqlPpp/Internals/AstInternal.ag
stack exec PostprocessUuagc
# prefix all the generated stuff with _
# so we don't get loads of unused function warnings
sed -r -i -e "s/([a-zA-Z0-9_]*_(Inh|Syn)_[a-zA-Z0-9_]*)/_\1/g" -e "s/((sem|wrap)_[a-zA-Z0-9_]*)/_\1/g" hssqlppp/src/Database/HsSqlPpp/Internals/AstInternal.hs
# sed -r -i -e "s/\b([^ ]*_(Inh|Syn)_[^ ]*)\b/_\1/" -e "s/\b((Inh|Syn|sem|wrap)_[^ ]*)/_\1/" hssqlppp/src/Database/HsSqlPpp/Internals/AstInternal.hs
# hssqlppp/src/Database/HsSqlPpp/Dialects/GeneratedPostgres.lhs
# don't want to automatically keep this up to date, only regenerate it
# manually
.PHONY : generatePostgresCatalog
generatePostgresCatalog :
stack build hssqlppp-build-extras:GeneratePostgresCatalog
stack exec GeneratePostgresCatalog > \
hssqlppp/src/Database/HsSqlPpp/Dialects/GeneratedPostgres.lhs_new
mv hssqlppp/src/Database/HsSqlPpp/Dialects/GeneratedPostgres.lhs_new \
hssqlppp/src/Database/HsSqlPpp/Dialects/GeneratedPostgres.lhs
##############################################################################
# building the tarballs for hackage. Maybe there should be more
# support here, for automated checking and uploading, to document the
# process and make it more difficult to miss a step?
# todo: use stack here
# .PHONY : sdists
# sdists :
# cd hssqlppp; cabal sdist
# cd hssqlppp-th; cabal sdist
# cd hssqlppp-pg; cabal sdist
# .PHONY : check-sdists
# check-sdists : sdists
# -rm -Rf /tmp/hssqlppp*
# cd hssqlppp; sh ~/.cabal/share/cabal-scripts-0.1/cabal-test \
# dist/hssqlppp-0.5.16.tar.gz
# cd hssqlppp-th; sh ~/.cabal/share/cabal-scripts-0.1/cabal-test \
# dist/hssqlppp-th-0.5.16.tar.gz
# cd hssqlppp-pg; sh ~/.cabal/share/cabal-scripts-0.1/cabal-test \
# dist/hssqlppp-pg-0.5.16.tar.gz
##############################################################################
# cleaning targets
.PHONY : clean
clean :
stack clean
rm -Rf build
################################################################
# utils
# run packdeps on all the cabal files in the project
# you should run cabal update
.PHONY : check-packdeps
check-packdeps :
stack install packdeps
@echo please make sure you have run 'cabal update' recently
stack exec packdeps -- `find . -name '*.cabal' -a ! -name 'h7c*'`
# check the basic libraries with ghc-7.8.4
# Maybe this needs improving since it will only check with
# the curated stack packages. On the other hand, most of the issues
# this finds are when we use 7.10 only features in the source, and
# aren't related to the package versions
#.PHONY : ghc-78
#ghc-78 :
# stack --resolver lts-2 test
ghc-844 :
stack --resolver lts-12.26 test
ghc-822 :
stack --resolver lts-11.22 test
##############################################################################
# rebuilding the website. You probably won't need to use this
.PHONY : website
website : website-static website-generated website-haddock
# website static is all the files which are either just copied to the
# build dir or exist as asciidoc files and are converted to html only
.PHONY : website-static
website-static : build/website/index.html build/website/examples.html
# todo: automatically pick up all asciidoc files?
build/website/index.html : website-source/index.asciidoc website-source/AddLinks.lhs
-mkdir -p build/website
asciidoctor website-source/index.asciidoc -o - | \
runhaskell website-source/AddLinks.lhs > build/website/index.html
build/website/examples.html : website-source/examples.asciidoc website-source/AddLinks.lhs
-mkdir -p build/website
asciidoctor website-source/examples.asciidoc -o - | \
runhaskell website-source/AddLinks.lhs > build/website/examples.html
# website-generated are the files which are generated from running a
# haskell program then operated on by asciidoctor
# TODO: make the MakeGeneratedWebsiteFiles accept the id of the file
# to generate and the place to write it to, then can make a separate
# rule for each html file
.PHONY : website-generated
website-generated : # todo
-mkdir -p build/website
stack build hssqlppp-make-generated-website-files
stack exec MakeGeneratedWebsiteFiles
asciidoctor build/website/ParserTests.asciidoc -o build/website/ParserTests.html
asciidoctor build/website/TypeCheckTests.asciidoc -o build/website/TypeCheckTests.html
asciidoctor build/website/QuasiQuoteTests.asciidoc -o build/website/QuasiQuoteTests.html
# TODO: this is very slow because stack is compiling hssqlppp instead
# of just doing the haddock. I don't know if there is a way round this
LTS_VER = $(shell sed -n "s/^resolver:\s*\(lts-[0-9.]\+\)/\1/p" stack.yaml)
GHC_VER = $(shell ghc --numeric-version)
.PHONY : website-haddock
website-haddock : $(shell find hssqlppp hssqlppp-th -iname '*hs')
-mkdir -p build/website/haddock
stack install hscolour
stack haddock hssqlppp hssqlppp-th --haddock-arguments --odir=`pwd`/build/website/haddock/
#cp -R .stack-work/install/x86_64-linux/$(LTS_VER)/$(GHC_VER)/doc/* build/website/haddock/
# generate a diagram of the hssqlppp package internal module dependencies
DIAGRAM_SRC_FILES=$(shell ls hssqlppp/src/Database/HsSqlPpp/*.lhs)
build/website/hssqlppp-modules.svg : $(DIAGRAM_SRC_FILES)
stack install graphmod
mkdir -p build/website
stack exec graphmod -- -i ~/wd/hssqlppp/master/hssqlppp/src $(DIAGRAM_SRC_FILES) \
-a -R Text -R Control -R Data -r Prelude \
| dot -Tsvg -o build/website/hssqlppp-modules.svg
.PHONY : build/website/hssqlppp-packages.svg
build/website/hssqlppp-packages.svg :
mkdir -p build/website
stack dot --prune hssqlppp-pg,hssqlppp-examples,hssqlppp-build-extras,hssqlppp-postprocess-uuagc \
--no-include-base --external --depth 1 | dot -Tsvg -o build/website/hssqlppp-packages.svg