Source-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: src/external/bsd/atf



Module Name:    src
Committed By:   jmmv
Date:           Wed Feb 12 04:08:32 UTC 2014

Modified Files:
        src/external/bsd/atf: Makefile.inc
        src/external/bsd/atf/etc/atf: Makefile
        src/external/bsd/atf/lib/libatf-c: Makefile
        src/external/bsd/atf/lib/libatf-c++: Makefile
        src/external/bsd/atf/lib/tools: Makefile
        src/external/bsd/atf/libexec/atf-check: Makefile
        src/external/bsd/atf/share/doc/atf: Makefile
        src/external/bsd/atf/share/examples/atf: Makefile
        src/external/bsd/atf/share/xml/atf: Makefile
        src/external/bsd/atf/share/xsl/atf: Makefile
        src/external/bsd/atf/tests/atf: Makefile
        src/external/bsd/atf/tests/atf/atf-c: Makefile
        src/external/bsd/atf/tests/atf/atf-c++: Makefile
        src/external/bsd/atf/tests/atf/atf-c++/detail: Makefile
        src/external/bsd/atf/tests/atf/atf-c/detail: Makefile
        src/external/bsd/atf/tests/atf/atf-sh: Makefile
        src/external/bsd/atf/tests/atf/test-programs: Makefile
        src/external/bsd/atf/tests/atf/tools: Makefile
        src/external/bsd/atf/usr.bin/atf-config: Makefile
        src/external/bsd/atf/usr.bin/atf-report: Makefile
        src/external/bsd/atf/usr.bin/atf-run: Makefile
        src/external/bsd/atf/usr.bin/atf-sh: Makefile
        src/external/bsd/atf/usr.bin/atf-version: Makefile
Added Files:
        src/external/bsd/atf: bconfig.h
        src/external/bsd/atf/etc: Makefile.inc
        src/external/bsd/atf/lib/libatf-c: defs.h
        src/external/bsd/atf/libexec: Makefile.inc
        src/external/bsd/atf/share: Makefile.inc
        src/external/bsd/atf/share/doc: Makefile.inc
        src/external/bsd/atf/share/examples: Makefile.inc
        src/external/bsd/atf/share/xml: Makefile.inc
        src/external/bsd/atf/share/xsl: Makefile.inc
        src/external/bsd/atf/tests: Makefile.inc
        src/external/bsd/atf/tests/atf: Makefile.inc
        src/external/bsd/atf/tests/atf/atf-c: Makefile.inc
        src/external/bsd/atf/tests/atf/atf-c++: Makefile.inc
Removed Files:
        src/external/bsd/atf/lib/libatf-c: bconfig.h

Log Message:
Homogenize reachover build file structure with that of kyua-cli:

- Move the majority of the common build definitions to the top-level
  Makefile.inc and ensure this gets included everywhere.
- Move the bconfig.h file to the top-level directory.
- Add a statically-generated defs.h file instead of creating one
  during the build.  Easier to understand and less chances for things
  to go wrong.
- Make sure all files using ATF_VERSION have the right dependency to
  trigger a rebuild when the value changes.
- Clean up stale -I flags.

This is all mostly for simplicity reasons and to reduce the cognitive
load required to understand the build of the atf and kyua-* packages.

I have tested this with both MKKYUA=no/yes and non-clean/clean builds
so hopefully I got the details right.  But if not, let me know please.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/atf/Makefile.inc
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/bconfig.h
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/etc/Makefile.inc
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/atf/etc/atf/Makefile
cvs rdiff -u -r1.18 -r1.19 src/external/bsd/atf/lib/libatf-c/Makefile
cvs rdiff -u -r1.14 -r0 src/external/bsd/atf/lib/libatf-c/bconfig.h
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/lib/libatf-c/defs.h
cvs rdiff -u -r1.21 -r1.22 src/external/bsd/atf/lib/libatf-c++/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/atf/lib/tools/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/libexec/Makefile.inc
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/atf/libexec/atf-check/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/share/Makefile.inc
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/share/doc/Makefile.inc
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/atf/share/doc/atf/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/share/examples/Makefile.inc
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/atf/share/examples/atf/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/share/xml/Makefile.inc
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/atf/share/xml/atf/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/share/xsl/Makefile.inc
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/atf/share/xsl/atf/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/tests/Makefile.inc
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/atf/tests/atf/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/tests/atf/Makefile.inc
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/atf/tests/atf/atf-c/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/tests/atf/atf-c/Makefile.inc
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/atf/tests/atf/atf-c++/Makefile
cvs rdiff -u -r0 -r1.1 src/external/bsd/atf/tests/atf/atf-c++/Makefile.inc
cvs rdiff -u -r1.4 -r1.5 \
    src/external/bsd/atf/tests/atf/atf-c++/detail/Makefile
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/atf/tests/atf/atf-c/detail/Makefile
cvs rdiff -u -r1.6 -r1.7 src/external/bsd/atf/tests/atf/atf-sh/Makefile
cvs rdiff -u -r1.4 -r1.5 \
    src/external/bsd/atf/tests/atf/test-programs/Makefile
cvs rdiff -u -r1.4 -r1.5 src/external/bsd/atf/tests/atf/tools/Makefile
cvs rdiff -u -r1.7 -r1.8 src/external/bsd/atf/usr.bin/atf-config/Makefile
cvs rdiff -u -r1.8 -r1.9 src/external/bsd/atf/usr.bin/atf-report/Makefile
cvs rdiff -u -r1.13 -r1.14 src/external/bsd/atf/usr.bin/atf-run/Makefile
cvs rdiff -u -r1.9 -r1.10 src/external/bsd/atf/usr.bin/atf-sh/Makefile
cvs rdiff -u -r1.10 -r1.11 src/external/bsd/atf/usr.bin/atf-version/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.




Home | Main Index | Thread Index | Old Index