-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
100 lines (84 loc) · 3.16 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
PACKAGES=./selda ./selda-sqlite ./selda-postgresql
.PHONY: help build license deps travischeck haddock check test pgtest sqlite postgres repl upload-selda upload sandbox
help:
@echo "Available targets:"
@echo "build - build and install packages"
@echo "test - build packages and run tests with SQLite"
@echo "pgtest - build packages and run tests with PostgreSQL"
@echo "repl - start ghci"
@echo "check - build package, run tests, do a cabal sanity check"
@echo "travischeck - like check, but with appropriate PGConnectInfo"
@echo "sqlite - build and install sqlite backend"
@echo "postgres - build and install postgres backend"
@echo "upload - upload packages to Hackage"
@echo "upload-selda - upload only the main selda package"
@echo "haddock - build Haddock docs"
@echo "sandbox - create shared sandbox"
@echo "deps - install dependencies"
build: license
cd ./selda ; cabal configure
cp -f README.md ./selda/README.md
cabal install $(PACKAGES)
license:
cp -f LICENSE ./selda/LICENSE
cp -f LICENSE ./selda-postgresql/LICENSE
cp -f LICENSE ./selda-sqlite/LICENSE
deps: license
cd ./selda ; cabal install --allow-newer=base
cabal install -f-haste $(PACKAGES)
cabal install ./selda-tests --only-dependencies --enable-tests
travischeck:
echo '{-# LANGUAGE OverloadedStrings #-}' > selda-tests/PGConnectInfo.hs
echo 'module PGConnectInfo where' >> selda-tests/PGConnectInfo.hs
echo 'import Database.Selda.PostgreSQL' >> selda-tests/PGConnectInfo.hs
echo 'pgConnectInfo = ("test" `on` "localhost"){pgUsername = Just "postgres"}' >> selda-tests/PGConnectInfo.hs
make check
haddock:
cd selda ; cabal configure
cd selda ; cabal haddock
check: test pgtest haddock
runghc ChangeLog.hs md
for pkg in $(PACKAGES) ; do \
cd $$pkg ; \
cabal clean ; \
cabal check ; \
cabal sdist ; \
cd .. ; \
done
cd ./selda ; cabal configure -f-localcache
cd ./selda ; cabal build
test: build
cabal install --only-dependencies --enable-tests --allow-newer=time ./selda-tests
cd ./selda-tests && cabal configure --enable-tests
cd ./selda-tests && cabal test
pgtest: build
cabal install --only-dependencies --enable-tests ./selda-tests
cd ./selda-tests && cabal configure --enable-tests -fpostgres
cd ./selda-tests && cabal test
sqlite:
cabal install ./selda-sqlite
postgres:
cabal install ./selda-postgresql
repl:
cabal repl --ghc-options="-XOverloadedStrings"
upload-selda: check
runghc ChangeLog.hs validate
runghc ChangeLog.hs tag
cabal upload ./selda/dist/selda-*.tar.gz
git push
git push --tags
upload: check
runghc ChangeLog.hs validate
runghc ChangeLog.hs tag
cabal upload $$(for pkg in $(PACKAGES) ; do echo $$pkg/dist/$$pkg-*.tar.gz ; done)
git push
git push --tags
sandbox: cabal.sandbox.config
cabal.sandbox.config:
mkdir -p .cabal-sandbox
cd .cabal-sandbox ; cabal sandbox init --sandbox .
cd selda ; cabal sandbox init --sandbox ../.cabal-sandbox
cd selda-sqlite ; cabal sandbox init --sandbox ../.cabal-sandbox
cd selda-postgresql ; cabal sandbox init --sandbox ../.cabal-sandbox
cd selda-tests ; cabal sandbox init --sandbox ../.cabal-sandbox
cabal sandbox init --sandbox .cabal-sandbox