-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
57 lines (50 loc) · 1.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
DEPS = deps \
deps/test-more-php \
deps/test_sites.php \
deps/JSONMessage.php \
deps/WordPress
test: pull
php test/createTableStatement.php
php test/alterTableStatement.php
php test/createViewStatement.php
php test/columns.php
php test/selectByColumn.php
php test/selectInColumn.php
php test/selectByKeys.php
php test/order.php
php test/orderBy.php
php test/inSet.php
php test/filterLike.php
php test/whereParams.php
php test/countStatement.php
php test/selectStatement.php
php test/insertStatement.php
php test/updateStatement.php
php test/deleteStatement.php
php test/showTablesStatement.php
php test/showColumnsStatement.php
php test/indexRows.php
php test/openSQLite.php
./press up wp
php test/openMySQL.php
php test/driver.php
./press down wp
pull: ${DEPS}
cd deps/JSONMessage.php && git pull origin
cd deps/test_sites.php && git pull origin
deps:
mkdir -p deps
deps/test-more-php:
svn checkout http://test-more-php.googlecode.com/svn/trunk/ deps/test-more-php
deps/JSONMessage.php:
git clone \
https://github.com/laurentszyster/JSONMessage.php.git \
deps/JSONMessage.php
deps/test_sites.php:
git clone \
https://github.com/unframed/test_sites.php \
deps/test_sites.php
deps/WordPress:
git clone \
https://github.com/WordPress/WordPress.git \
deps/WordPress