File tree Expand file tree Collapse file tree 2 files changed +5
-19
lines changed Expand file tree Collapse file tree 2 files changed +5
-19
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ SRC_DIR = src
2
2
BUILD_DIR = build
3
3
4
4
PREFIX = .
5
- DOCS_DIR = ${PREFIX}/docs
6
5
TEST_DIR = ${PREFIX}/test
7
6
DIST_DIR = ${PREFIX}/dist
8
7
SPEED_DIR = ${PREFIX}/speed
@@ -26,7 +25,6 @@ MODULES = ${SRC_DIR}/intro.js\
26
25
${SRC_DIR}/outro.js
27
26
28
27
JQ = ${DIST_DIR}/jquery.js
29
- JQ_LITE = ${DIST_DIR}/jquery.lite.js
30
28
JQ_MIN = ${DIST_DIR}/jquery.min.js
31
29
32
30
JQ_VER = ` cat version.txt `
@@ -57,16 +55,6 @@ ${JQ}: ${MODULES}
57
55
@@echo ${JQ} "Built"
58
56
@@echo
59
57
60
- lite : ${JQ_LITE}
61
-
62
- ${JQ_LITE} : ${JQ}
63
- @@echo " Building" ${JQ_LITE}
64
-
65
- @@cp ${JQ} ${JQ_LITE}
66
-
67
- @@echo ${JQ_LITE} "Built"
68
- @@echo
69
-
70
58
min : ${JQ_MIN}
71
59
72
60
${JQ_MIN} : ${JQ}
@@ -104,8 +92,5 @@ clean:
104
92
@@echo " Removing Distribution directory:" ${DIST_DIR}
105
93
@@rm -rf ${DIST_DIR}
106
94
107
- @@echo "Removing Documentation directory:" ${DOCS_DIR}
108
- @@rm -rf ${DOCS_DIR}
109
-
110
95
@@echo "Removing Speed Test Suite directory:" ${SPEED_DIR}
111
96
@@rm -rf ${SPEED_DIR}
Original file line number Diff line number Diff line change @@ -33,10 +33,6 @@ make jquery
33
33
The standard, uncompressed, jQuery code.
34
34
Makes: ./dist/jquery.js
35
35
36
- make lite
37
- jQuery without all the additional inline documentation and test cases.
38
- Makes: ./dist/jquery.lite.js
39
-
40
36
make min
41
37
A compressed version of jQuery (made the YUI Minifier).
42
38
Makes: ./dist/jquery.min.js
@@ -46,6 +42,11 @@ make test
46
42
Open this file in your browser:
47
43
./test/index.html
48
44
45
+ make speed
46
+ Makes a performance analysis test suite.
47
+ Open this file in your browser:
48
+ ./speed/index.html
49
+
49
50
Finally, you can remove all the built files using the command:
50
51
make clean
51
52
You can’t perform that action at this time.
0 commit comments