| 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 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 CLEAN-OBJS += libs.doxy | 482 CLEAN-OBJS += libs.doxy |
| 483 DOCS-yes += libs.doxy | 483 DOCS-yes += libs.doxy |
| 484 libs.doxy: $(CODEC_DOC_SRCS) | 484 libs.doxy: $(CODEC_DOC_SRCS) |
| 485 @echo " [CREATE] $@" | 485 @echo " [CREATE] $@" |
| 486 @rm -f $@ | 486 @rm -f $@ |
| 487 @echo "INPUT += $^" >> $@ | 487 @echo "INPUT += $^" >> $@ |
| 488 @echo "INCLUDE_PATH += ." >> $@; | 488 @echo "INCLUDE_PATH += ." >> $@; |
| 489 @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@ | 489 @echo "ENABLED_SECTIONS += $(sort $(CODEC_DOC_SECTIONS))" >> $@ |
| 490 | 490 |
| 491 ## Generate rtcd.h for all objects | 491 ## Generate rtcd.h for all objects |
| 492 ifeq ($(CONFIG_DEPENDENCY_TRACKING),yes) |
| 492 $(OBJS-yes:.o=.d): $(RTCD) | 493 $(OBJS-yes:.o=.d): $(RTCD) |
| 494 else |
| 495 $(OBJS-yes): $(RTCD) |
| 496 endif |
| 493 | 497 |
| 494 ## Update the global src list | 498 ## Update the global src list |
| 495 SRCS += $(CODEC_SRCS) $(LIBVPX_TEST_SRCS) $(GTEST_SRCS) | 499 SRCS += $(CODEC_SRCS) $(LIBVPX_TEST_SRCS) $(GTEST_SRCS) |
| 496 | 500 |
| 497 ## | 501 ## |
| 498 ## vpxdec/vpxenc tests. | 502 ## vpxdec/vpxenc tests. |
| 499 ## | 503 ## |
| 500 ifeq ($(CONFIG_UNIT_TESTS),yes) | 504 ifeq ($(CONFIG_UNIT_TESTS),yes) |
| 501 TEST_BIN_PATH = . | 505 TEST_BIN_PATH = . |
| 502 ifeq ($(CONFIG_MSVS),yes) | 506 ifeq ($(CONFIG_MSVS),yes) |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release | 538 EXAMPLES_BIN_PATH := $(TGT_OS:win64=x64)/Release |
| 535 endif | 539 endif |
| 536 exampletest: examples testdata | 540 exampletest: examples testdata |
| 537 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \ | 541 $(qexec)$(SRC_PATH_BARE)/test/examples.sh \ |
| 538 --test-data-path $(LIBVPX_TEST_DATA_PATH) \ | 542 --test-data-path $(LIBVPX_TEST_DATA_PATH) \ |
| 539 --bin-path $(EXAMPLES_BIN_PATH) | 543 --bin-path $(EXAMPLES_BIN_PATH) |
| 540 else | 544 else |
| 541 exampletest: | 545 exampletest: |
| 542 @echo Unit tests must be enabled to make the exampletest target. | 546 @echo Unit tests must be enabled to make the exampletest target. |
| 543 endif | 547 endif |
| OLD | NEW |