John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 1 | ## |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 2 | ## Copyright (c) 2016, Alliance for Open Media. All rights reserved |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 3 | ## |
Yaowu Xu | 9c01aa1 | 2016-09-01 14:32:49 -0700 | [diff] [blame] | 4 | ## This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | ## the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | ## was not distributed with this source code in the LICENSE file, you can |
| 7 | ## obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | ## Media Patent License 1.0 was not distributed with this source code in the |
| 9 | ## PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 10 | ## |
| 11 | |
| 12 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 13 | # libaom reverse dependencies (targets that depend on libaom) |
| 14 | AOM_NONDEPS=$(addsuffix .$(VCPROJ_SFX),aom gtest) |
| 15 | AOM_RDEPS=$(foreach vcp,\ |
| 16 | $(filter-out $(AOM_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):aom) |
| 17 | |
| 18 | aom.sln: $(wildcard *.$(VCPROJ_SFX)) |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 19 | @echo " [CREATE] $@" |
| 20 | $(SRC_PATH_BARE)/build/make/gen_msvs_sln.sh \ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 21 | $(if $(filter aom.$(VCPROJ_SFX),$^),$(AOM_RDEPS)) \ |
| 22 | --dep=test_libaom:gtest \ |
John Koleszar | 7f63bfa | 2012-06-01 10:43:47 -0700 | [diff] [blame] | 23 | --ver=$(CONFIG_VS_VERSION)\ |
| 24 | --out=$@ $^ |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 25 | aom.sln.mk: aom.sln |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 26 | @true |
| 27 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 28 | PROJECTS-yes += aom.sln aom.sln.mk |
| 29 | -include aom.sln.mk |
John Koleszar | 0ea50ce | 2010-05-18 11:58:33 -0400 | [diff] [blame] | 30 | |
| 31 | # Always install this file, as it is an unconditional post-build rule. |
| 32 | INSTALL_MAPS += src/% $(SRC_PATH_BARE)/% |
| 33 | INSTALL-SRCS-yes += $(target).mk |