Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio_mebibou
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Alexandra Rogova
jio_mebibou
Commits
88a73c47
Commit
88a73c47
authored
Aug 08, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'make' output more explicit
parent
83f49b27
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
Makefile
Makefile
+11
-1
No files found.
Makefile
View file @
88a73c47
...
...
@@ -39,15 +39,21 @@ LINT_FILES = $(LINT_NAMES:%=$(JIO_DIR)/%.js) $(CONCAT_STORAGE_NAMES:%=$(STORAGE
# build parser.js
compile
:
#
############################## Compile Query Parser ##############################
$(JSCC_CMD)
-o
$(PARSER_OUT)
$(PARSER_PAR)
# concat source files into jio.js and complex-queries.js
concat
:
#
############################## Concat JIO and Queries ##############################
cat
$(CONCAT_JIO_FILES)
>
"
$(JIO)
"
cat
$(CONCAT_QUERIES_FILES)
>
"
$(COMPLEX)
"
# uglify into jio.min.js and complex.min.js
uglify
:
#
############################## Uglify JIO and Queries ##############################
$(UGLIFY_CMD)
"
$(JIO)
"
>
"
$(JIO_MIN)
"
$(UGLIFY_CMD)
"
$(COMPLEX)
"
>
"
$(COMPLEX_MIN)
"
...
...
@@ -58,9 +64,13 @@ uglify:
# /*jslint indent: 2, maxlen: 80 */
# /*global hex_sha256: true, jQuery: true */
lint
:
$(LINT_CMD)
$(LINT_FILES)
#
############################## Lint All files ##############################
echo
;
a
=
"
$$
(
$(LINT_CMD)
$(LINT_FILES)
)"
;
[
$$
?
!=
0
]
&&
echo
"
$$
a"
|
grep
-v
'OK\.$$'
|
uniq
&&
false
phantom
:
#
############################## Phantom ##############################
$(PHANTOM_CMD)
test/run-qunit.js
test/jiotests_withoutrequirejs.html
|
awk
'BEGIN {print "<!DOCTYPE html><html>"} /^<head>$$/, /^<\/body>$$/ {print} END {print "</html>"}'
|
sed
-e
's,^ *<\(/\|\)script.*>$$,,g'
>
test/unit_test_result.html
grep
'^ <title>✔ '
test/unit_test_result.html
>
/dev/null
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment