| OLD | NEW |
| 1 ## | 1 ## |
| 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. | 2 ## Copyright (c) 2010 The WebM project authors. All Rights Reserved. |
| 3 ## | 3 ## |
| 4 ## Use of this source code is governed by a BSD-style license | 4 ## Use of this source code is governed by a BSD-style license |
| 5 ## that can be found in the LICENSE file in the root of the source | 5 ## that can be found in the LICENSE file in the root of the source |
| 6 ## tree. An additional intellectual property rights grant can be found | 6 ## tree. An additional intellectual property rights grant can be found |
| 7 ## in the file PATENTS. All contributing project authors may | 7 ## in the file PATENTS. All contributing project authors may |
| 8 ## be found in the AUTHORS file in the root of the source tree. | 8 ## be found in the AUTHORS file in the root of the source tree. |
| 9 ## | 9 ## |
| 10 | 10 |
| (...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 | 524 |
| 525 ## | 525 ## |
| 526 ## documentation directives | 526 ## documentation directives |
| 527 ## | 527 ## |
| 528 CLEAN-OBJS += libs.doxy | 528 CLEAN-OBJS += libs.doxy |
| 529 DOCS-yes += libs.doxy | 529 DOCS-yes += libs.doxy |
| 530 libs.doxy: $(CODEC_DOC_SRCS) | 530 libs.doxy: $(CODEC_DOC_SRCS) |
| 531 @echo " [CREATE] $@" | 531 @echo " [CREATE] $@" |
| 532 @rm -f $@ | 532 @rm -f $@ |
| 533 @echo "INPUT += $^" >> $@ | 533 @echo "INPUT += $^" >> $@ |
| 534 @echo "PREDEFINED = VPX_CODEC_DISABLE_COMPAT" >> $@ | |
| 535 @echo "INCLUDE_PATH += ." >> $@; | 534 @echo "INCLUDE_PATH += ." >> $@; |
| 536 @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@ | 535 @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@ |
| 537 | 536 |
| 538 ## Generate rtcd.h for all objects | 537 ## Generate rtcd.h for all objects |
| 539 $(OBJS-yes:.o=.d): $(RTCD) | 538 $(OBJS-yes:.o=.d): $(RTCD) |
| 540 | 539 |
| 541 ## Update the global src list | 540 ## Update the global src list |
| 542 SRCS += $(CODEC_SRCS) $(LIBVPX_TEST_SRCS) $(GTEST_SRCS) | 541 SRCS += $(CODEC_SRCS) $(LIBVPX_TEST_SRCS) $(GTEST_SRCS) |
| 543 | 542 |
| 544 ## | 543 ## |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release | 580 EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release |
| 582 endif | 581 endif |
| 583 exampletest: examples testdata | 582 exampletest: examples testdata |
| 584 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \ | 583 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \ |
| 585 --test-data-path $(LIBVPX_TEST_DATA_PATH) \ | 584 --test-data-path $(LIBVPX_TEST_DATA_PATH) \ |
| 586 --bin-path $(EXAMPLES_BIN_PATH) | 585 --bin-path $(EXAMPLES_BIN_PATH) |
| 587 else | 586 else |
| 588 exampletest: | 587 exampletest: |
| 589 @echo Unit tests must be enabled to make the exampletest target. | 588 @echo Unit tests must be enabled to make the exampletest target. |
| 590 endif | 589 endif |
| OLD | NEW |