-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: don't have contrib/windows in both DIST_SUBDIRS and EXTRA_DIST
We used EXTRA_DIST of the entire directory to avoid listing all MSVC files, and DIST_SUBDIRS for checking the version numbers in the windows config files. Only use DIST_SUBDIRS (and list all files explicitly). Signed-off-by: Brice Goglin <[email protected]>
- Loading branch information
Showing
2 changed files
with
35 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,39 @@ | ||
# Copyright © 2009-2018 Inria. All rights reserved. | ||
# Copyright © 2009-2020 Inria. All rights reserved. | ||
# See COPYING in top-level directory. | ||
|
||
# This Makefile doesn't run by default because it requires | ||
# bash, and grep built with support for -P | ||
# This Makefile isn't used outside of make dist by default | ||
# because test-windows-version.sh requires | ||
# bash, and grep built with support for -P | ||
|
||
TESTS = test-windows-version.sh | ||
|
||
EXTRA_DIST = \ | ||
README \ | ||
hwloc.sln \ | ||
hwloc_config.h \ | ||
private_config.h \ | ||
static-components.h \ | ||
libhwloc.vcxproj \ | ||
libhwloc.vcxproj.filters \ | ||
hwloc-annotate.vcxproj \ | ||
hwloc-annotate.vcxproj.filters \ | ||
hwloc-bind.vcxproj \ | ||
hwloc-bind.vcxproj.filters \ | ||
hwloc-calc.vcxproj \ | ||
hwloc-calc.vcxproj.filters \ | ||
hwloc-diff.vcxproj \ | ||
hwloc-diff.vcxproj.filters \ | ||
hwloc-distrib.vcxproj \ | ||
hwloc-distrib.vcxproj.filters \ | ||
hwloc-gather-cpuid.vcxproj \ | ||
hwloc-gather-cpuid.vcxproj.filters \ | ||
hwloc-info.vcxproj \ | ||
hwloc-info.vcxproj.filters \ | ||
hwloc-patch.vcxproj \ | ||
hwloc-patch.vcxproj.filters \ | ||
lstopo-no-graphics.vcxproj \ | ||
lstopo-no-graphics.vcxproj.filters \ | ||
lstopo-win.vcxproj \ | ||
lstopo-win.vcxproj.filters \ | ||
lstopo.vcxproj \ | ||
lstopo.vcxproj.filters |