Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(267)

Delta Between Two Patch Sets: GNUmakefile.in

Issue 573150043: Fix 'check' target without tidy (Closed)
Left Patch Set: Created 4 years, 5 months ago
Right Patch Set: Use 'false' as negative value Created 4 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | aclocal.m4 » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 # -*-Makefile-*- 1 # -*-Makefile-*-
2 2
3 depth = . 3 depth = .
4 4
5 SUBDIRS = python scripts \ 5 SUBDIRS = python scripts \
6 flower lily \ 6 flower lily \
7 mf ly \ 7 mf ly \
8 tex ps scm \ 8 tex ps scm \
9 po \ 9 po \
10 elisp vim \ 10 elisp vim \
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 ( echo "*** no baseline for comparison" 1>&2 && false ) ) 366 ( echo "*** no baseline for comparison" 1>&2 && false ) )
367 $(MAKE) test 367 $(MAKE) test
368 368
369 local-check: local-check-pre 369 local-check: local-check-pre
370 rm -rf $(RESULT_DIR) 370 rm -rf $(RESULT_DIR)
371 mkdir -p $(RESULT_DIR) 371 mkdir -p $(RESULT_DIR)
372 $(buildscript-dir)/output-distance $(if $(VERBOSE),-v) \ 372 $(buildscript-dir)/output-distance $(if $(VERBOSE),-v) \
373 --local-datadir --create-images --output-dir $(RESULT_DIR) \ 373 --local-datadir --create-images --output-dir $(RESULT_DIR) \
374 input/regression/out-test-baseline input/regression/out-test \ 374 input/regression/out-test-baseline input/regression/out-test \
375 input/regression/midi/out-test-baseline input/regression/midi/ou t-test 375 input/regression/midi/out-test-baseline input/regression/midi/ou t-test
376 ifneq ($(TIDY),no) 376 ifneq ($(TIDY),false)
377 find $(RESULT_DIR) -name '*.html' | while read f ; do \ 377 find $(RESULT_DIR) -name '*.html' | while read f ; do \
378 echo "Validating $$f" ; \ 378 echo "Validating $$f" ; \
379 $(TIDY) -q -o /dev/null "$$f" || exit 1 ; \ 379 $(TIDY) -q -o /dev/null "$$f" || exit 1 ; \
380 done 380 done
381 endif 381 endif
382 @find input ly -name '*.ly' -print |grep -v 'out.*/' | xargs grep '\\ver sion' -L | grep -v "standard input" |sed 's/^/**** Missing version: /g' 382 @find input ly -name '*.ly' -print |grep -v 'out.*/' | xargs grep '\\ver sion' -L | grep -v "standard input" |sed 's/^/**** Missing version: /g'
383 383
384 384
385 test-redo: 385 test-redo:
386 for a in `cat $(RESULT_DIR)/changed.txt` ; do \ 386 for a in `cat $(RESULT_DIR)/changed.txt` ; do \
(...skipping 11 matching lines...) Expand all
398 test-snippets-clean: 398 test-snippets-clean:
399 rm -rf out/lybook-testdb 399 rm -rf out/lybook-testdb
400 400
401 # we want this separate for security; see CG 4.2. -gp 401 # we want this separate for security; see CG 4.2. -gp
402 website: 402 website:
403 $(MAKE) config_make=$(config_make) \ 403 $(MAKE) config_make=$(config_make) \
404 top-src-dir=$(top-src-dir) \ 404 top-src-dir=$(top-src-dir) \
405 -f $(top-src-dir)/make/website.make \ 405 -f $(top-src-dir)/make/website.make \
406 website 406 website
407 407
LEFTRIGHT
« no previous file | aclocal.m4 » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b