Skip to content

Commit b2e9680

Browse files
committed
Removed the 'lite' build option (no longer used) and updated the README.
1 parent cd05cac commit b2e9680

File tree

2 files changed

+5
-19
lines changed

2 files changed

+5
-19
lines changed

Makefile

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ SRC_DIR = src
22
BUILD_DIR = build
33

44
PREFIX = .
5-
DOCS_DIR = ${PREFIX}/docs
65
TEST_DIR = ${PREFIX}/test
76
DIST_DIR = ${PREFIX}/dist
87
SPEED_DIR = ${PREFIX}/speed
@@ -26,7 +25,6 @@ MODULES = ${SRC_DIR}/intro.js\
2625
${SRC_DIR}/outro.js
2726

2827
JQ = ${DIST_DIR}/jquery.js
29-
JQ_LITE = ${DIST_DIR}/jquery.lite.js
3028
JQ_MIN = ${DIST_DIR}/jquery.min.js
3129

3230
JQ_VER = `cat version.txt`
@@ -57,16 +55,6 @@ ${JQ}: ${MODULES}
5755
@@echo ${JQ} "Built"
5856
@@echo
5957

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-
7058
min: ${JQ_MIN}
7159

7260
${JQ_MIN}: ${JQ}
@@ -104,8 +92,5 @@ clean:
10492
@@echo "Removing Distribution directory:" ${DIST_DIR}
10593
@@rm -rf ${DIST_DIR}
10694

107-
@@echo "Removing Documentation directory:" ${DOCS_DIR}
108-
@@rm -rf ${DOCS_DIR}
109-
11095
@@echo "Removing Speed Test Suite directory:" ${SPEED_DIR}
11196
@@rm -rf ${SPEED_DIR}

README

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ make jquery
3333
The standard, uncompressed, jQuery code.
3434
Makes: ./dist/jquery.js
3535

36-
make lite
37-
jQuery without all the additional inline documentation and test cases.
38-
Makes: ./dist/jquery.lite.js
39-
4036
make min
4137
A compressed version of jQuery (made the YUI Minifier).
4238
Makes: ./dist/jquery.min.js
@@ -46,6 +42,11 @@ make test
4642
Open this file in your browser:
4743
./test/index.html
4844

45+
make speed
46+
Makes a performance analysis test suite.
47+
Open this file in your browser:
48+
./speed/index.html
49+
4950
Finally, you can remove all the built files using the command:
5051
make clean
5152

0 commit comments

Comments
 (0)