| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 .install-bins: .bins $(addprefix $(DIST_DIR)/,$(INSTALL-BINS)) | 376 .install-bins: .bins $(addprefix $(DIST_DIR)/,$(INSTALL-BINS)) |
| 377 @touch $@ | 377 @touch $@ |
| 378 | 378 |
| 379 clean:: | 379 clean:: |
| 380 rm -f .bins .install-bins $(BINS) | 380 rm -f .bins .install-bins $(BINS) |
| 381 | 381 |
| 382 LIBS=$(call enabled,LIBS) | 382 LIBS=$(call enabled,LIBS) |
| 383 .libs: $(LIBS) | 383 .libs: $(LIBS) |
| 384 @touch $@ | 384 @touch $@ |
| 385 $(foreach lib,$(filter %_g.a,$(LIBS)),$(eval $(call archive_template,$(lib)))) | 385 $(foreach lib,$(filter %_g.a,$(LIBS)),$(eval $(call archive_template,$(lib)))) |
| 386 $(foreach lib,$(filter %so.$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH),$(
LIBS)),$(eval $(call so_template,$(lib)))) | 386 $(foreach lib,$(filter %so.$(SO_VERSION_MAJOR).$(SO_VERSION_MINOR).$(SO_VERSION_
PATCH),$(LIBS)),$(eval $(call so_template,$(lib)))) |
| 387 $(foreach lib,$(filter %$(VERSION_MAJOR).dylib,$(LIBS)),$(eval $(call dl_templat
e,$(lib)))) | 387 $(foreach lib,$(filter %$(SO_VERSION_MAJOR).dylib,$(LIBS)),$(eval $(call dl_temp
late,$(lib)))) |
| 388 | 388 |
| 389 INSTALL-LIBS=$(call cond_enabled,CONFIG_INSTALL_LIBS,INSTALL-LIBS) | 389 INSTALL-LIBS=$(call cond_enabled,CONFIG_INSTALL_LIBS,INSTALL-LIBS) |
| 390 ifeq ($(MAKECMDGOALS),dist) | 390 ifeq ($(MAKECMDGOALS),dist) |
| 391 INSTALL-LIBS+=$(call cond_enabled,CONFIG_INSTALL_LIBS,DIST-LIBS) | 391 INSTALL-LIBS+=$(call cond_enabled,CONFIG_INSTALL_LIBS,DIST-LIBS) |
| 392 endif | 392 endif |
| 393 .install-libs: .libs $(addprefix $(DIST_DIR)/,$(INSTALL-LIBS)) | 393 .install-libs: .libs $(addprefix $(DIST_DIR)/,$(INSTALL-LIBS)) |
| 394 @touch $@ | 394 @touch $@ |
| 395 | 395 |
| 396 clean:: | 396 clean:: |
| 397 rm -f .libs .install-libs $(LIBS) | 397 rm -f .libs .install-libs $(LIBS) |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 ifeq ($(CONFIG_EXTERNAL_BUILD),yes) | 444 ifeq ($(CONFIG_EXTERNAL_BUILD),yes) |
| 445 BUILD_TARGETS += .projects | 445 BUILD_TARGETS += .projects |
| 446 INSTALL_TARGETS += .install-projects | 446 INSTALL_TARGETS += .install-projects |
| 447 endif | 447 endif |
| 448 BUILD_TARGETS += .docs .libs .bins | 448 BUILD_TARGETS += .docs .libs .bins |
| 449 INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins | 449 INSTALL_TARGETS += .install-docs .install-srcs .install-libs .install-bins |
| 450 all: $(BUILD_TARGETS) | 450 all: $(BUILD_TARGETS) |
| 451 install:: $(INSTALL_TARGETS) | 451 install:: $(INSTALL_TARGETS) |
| 452 dist: $(INSTALL_TARGETS) | 452 dist: $(INSTALL_TARGETS) |
| 453 test:: | 453 test:: |
| OLD | NEW |