| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: mk-configure-doc | Distribution: SUSE Linux Enterprise 15 SP6 |
| Version: 0.34.1 | Vendor: openSUSE |
| Release: bp156.3.2 | Build date: Sat Jan 20 00:23:15 2024 |
| Group: Documentation/Other | Build host: h02-ch2b |
| Size: 436581 | Source RPM: mk-configure-0.34.1-bp156.3.2.src.rpm |
| Packager: https://bugs.opensuse.org | |
| Url: http://sourceforge.net/projects/mk-configure/ | |
| Summary: Mk-configure documentation | |
Mk-configure package: examples and presentation.
BSD-2-Clause AND MIT AND ISC
* Mon Mar 30 2020 vle@gmx.net
- Update to mk-configure-0.34.1
Fixes in mk-configure:
* broken builtins prog_* (broken since 0.29.2)
* MKC_REQUIRE_BUILTINS also sets BUILTIN.<builtin> variable
(broken -- always)
* mk/ also installs mkc_imp.foreign_autotools.mk (broken -- always)
* mkc_compiler_settings(1): unexpected loading of ../Makefile.inc
(broken -- 0.34.0)
* mk-configure.7:
* clang also supports WARNERR
* add documentation for MKC_REQUIRE_BUILTINS
* other minor clean-ups and fixes
* mkc_imp.foreign_autotools.mk: do not change .OBJDIR!
Fixes and improvements in tests/, examples/ and build infrastructure:
* examples/hello_calc2: build failure with gcc-10 (multiple
definition of `calc_lval'). Thanks to Sergei Trofimovich.
* examples/hello_autoconf: out-of-tree build failure
* examples/check_compiler_opts: run "cleandir" at the end of "test"
* examples/hello_require_tools: run "cleandir" at the end of "test"
* examples/subprojects/test.mk: better ignore nroff
warning "cannot adjust line"
* tests/dltest: run "cleandir" at the end of "test"
* tests/mkc_check_custom: run "cleandir" at the end of "test"
* tests/os_OpenBSD: run "cleandir" at the end of "test"
* tests/os_Linux: run "cleandir" at the end of "test"
* tests/require_prototype: run "cleandir" at the end of "test"
* tests/os_NetBSD: run "cleandir" at the end of "test"
* examples/hello_autoconf: use MKC_REQUIRE_BUILTINS
instead of MKC_CHECK_BUILTINS
* main.mk: clean -> clean-examples; cleandir -> cleandir-examples
Add example/Makefile for running tests after installing mk-configure
* Thu Mar 19 2020 vle@gmx.net
- Fix MKC_SYSCONFDIR (/usr/etc). Now it is /etc
* Tue Mar 17 2020 vle@gmx.net
- Use "bmkdep" as a default "build dependencies" tool
instead of "makedepend".
* Fri Mar 13 2020 vle@gmx.net
- Update to 0.34.0:
This release introduces some incompatibilities with older releases:
- mkc_install -l is changed
- Target "distclean" is considered deprecated.
Use target "configure" instead!
- Remove support for Pascal, Fortran and ObjC.
Only C and C++ are supported.
- Do not add ${LEXLIB} to LDADD if SRCS contains .l files.
You have to add it manually when needed or use new feature "libl".
- mkc_check_custom: remove options -p and -n
- LDREAL is either C or C++ compiler, not the linker
- mkc_check_custom: do not use CARGS anymore
- Introduce CXXOPTS and CXXOPTS_<prj> variables and
do not pass COPTS to C++ compiler. COPTS is only for C!
mk-configure build system changes:
- Introduce new targets "help", "help_subprj" and "help_use" and
appropriate framework for documenting the software project. See
mkc_imp.help.mk makefile. mk-configure itself uses this
framework, so, you can run "bmake help" before build. Also
introduce the following configuring variables for mk-configure:
USE_AWK, USE_ID, USE_INSTALL, USE_NM, USE_SH, USE_CC_COMPILERS,
USE_CXX_COMPILERS. See updated doc/INSTALL.md
- Add virtual targets "examples" in addition to "tests".
- Move helpers/* scripts to examples/helpers/ subdirectory. They
are for testing mk-configure only.
Mk files:
* C{,XX}FLAGS.{warns,ssp,pie,pic}, LDFLAGS.pie etc...:
Defaults for these values are determined at build time by
checking whether compiler/linker accepts the corresponding
option. Load compiler specific options from ~/.mk-c and
MKFILESDIR directories, and exit with error if they do not
exist. For generating such settings for compiler absent at build
time, use newly introduced script "mkc_compiler_settings".
* C{,XX}FLAGS:
Pass these flags to the compiler after C{,XX}FLAGS.warns
for overriding bad warnings/errors
* MKC_CHECK_{CC,CXX}_OPTS:
double underline symbols in the option is considered
as a single space
* MKC_CHECK_CUSTOM:
- pass MKC_CUSTOM_{CPPFLAGS,CFLAGS,CXXFLAGS,LDFLAGS,LDADD}.<check_name>
flags to the compiler
- introduce variable MKC_CUSTOM_NOAUTO.<checkname>
- introduce variable MKC_CUSTOM_CACHE.<checkname>
- introduce variable MKC_CHECK_CCLD_OPTS and MKC_CHECK_CXXLD_OPTS
* Introduce new variables CC_VERSION and CXX_VERSION determined
by mkc_check_compiler(1)
* Introduce INSTALL_FLAGS variables and remove undocumented
COPY, PRESERVE, INSTPRIV and RENAME
* Keep initial settings for mk-configure in sys.mk
instead of mkc_imp.vars.mk
* Introduce MKC_CUSTOM_LINK.<custom_check_name> variable for link testing
* Introduce CFLAGS.check and CXXFLAGS.check variables
* Set CFLAGS.dflt.sunpro to -errtags
* mkc.conf.mk: undefine MKC_CHECK_CC_OPTS, MKC_CHECK_CXX_OPTS after use
* Introduce new checks MKC_CHECK_CCLD_OPTS and MKC_CHECK_CXXLD_OPTS
* Introduce new "help" framework, see mkc_imp.help.mk section in man page
* mkc.minitest.mk: minor fix in target "cleandir"
Features:
- add support for C++ (extern "C") to all feature header files
- add new feature "libl" for libl.a or libfl.a
Utilities:
* mkc_install:
- "move" semantic is disabled forever, so flag -c is silently ignored
- add manual page
- flag -l is changed and becomes compatible with NetBSD install(1)
- actually it is almost completely reimplemented
* mkc_check_compiler:
- add man page
- exit status is 2, if bad option is specified
- CC defaults to "cc" as the documentation says
- detects not only compiler type, but also a version
- cache file name for C compiler type is _mkc_cc_type.*
* mkc_check_custom:
- switch to getopts
- add option -l and support for LDFLAGS and LDADD
- add new option -t and remove options -p and -n
- do not use CARGS anymore, use CFLAGS and CPPFLAGS instead
* mkc_which:
- add man page
* mkc_check_version:
- add man page
* mkc_get_deps:
- installed to libexec/ instead of bin/
Documentation update
Code clean-ups and minor fixes
- Update to 0.33.1:
Clarify problems with MAKE_VERSION variable.
mkc_imp.foreign_autotools.mk: fix for incorrect make invocation for
generated Makefile.
Remove -Wabi from GNU c++ warnings.
mkc_check_decl: use autodetected AWK.
- Update to 0.33.0:
Add new features "getdelin" and "strndup".
Fix MKC_CHECK_FUNCS<n> when MKC_FUNC_OR_DEFINE.<x> is "yes".
Fix awk in mkc_check_compiler. AWK is supposed to be replaced as
seen in Makefile.inc. This makes awk work correctly on solaris etc.
Thanks to Niclas Rosenvik!
Change the order of options passed to the C and C++ compiler. It
is: CPPFLAGS0, CPPFLAGS, CPPFLAGS_<project>, C{,XX}FLAGS,
C{,XX}FLAGS.ssp, C{,XX}FLAGS.pie, C{,XX}FLAGS.warns,
C{,XX}FLAGS_<project>, C{,XX}FLAGS.pic (for shared objects), COPTS,
COPTS_<project>.
scripts/mkc_check_custom: switch to /usr/xpg4/bin/sh on SunOS-5.10
Fixes in regression tests for Solaris 10 and 11.
examples/hello_libdeps: fix regression test on
Linux/mips64/eglibc-2.13.
* Sun Jan 05 2020 vle@gmx.net
- Update to 0.32.1:
Changes between 0.32.0 and 0.32.1:
* Fix MKC_CHECK_SIZEOF when having slashes in the header part.
Thanks to Niclas Rosenvik for the fix!
* Fix support for .cxx c++ files in profiled and shared libraries.
Thanks to Niclas Rosenvik for the fix!
* Fix in presentation/Makefile
* Fix in mk-configure.7 man page
* Fix at_do_* target
* Remove $(COPTS) from $(CFLAGS) and change COMPILE.{c,cc}
* Fix regression test examples/hello_errwarn on musl-based Linuxes (Alpine Linux)
Changes from 0.31.0 and 0.32.0
* Calculate WARNERR and {CC,CXX}FLAGS.warnerr lazily. This makes some
interesting scenaria possible, for example, setting WARNS in
Makefile.common or Makefile.inc top-level files.
* Feature "prog_gmake": fix fork-bomb seen on FreeBSD 12.0-RELEASE-p3
due to features of native make(1).
* Fixes for builtins prog_gm4, prog_gmake, prog_gawk and prog_flex
(multiline output)
* MKC_BUILTINS_*: fix find_n_match function in mkc_check_common.sh
* Minor fixes in examples/hello_{yaxx,calc2}
* Always apply -Werror=implicit-function-declaration for clang.
This fixes MKC_CHECK_FUNCS on clang-5.0.1 and earlier versions.
* mkc_imp.foreign_autotools.mk: if AT_MAKE is empty set it to "false"
* Get rid of builtin "endianess" (with single N)
* mkc_check_common.sh: always use mkc_which(1) instead of which(1)
* Updates for Lua code in examples/
* BMAKE_REQD check: workaround for broken bmake (seen on Darwin) that
defines empty MAKE_VERSION
* examples/hello_dictd/test.mk: avoid double-slash in dirs
* Thu Apr 11 2019 vle@gmx.net
- Update to 0.31.0:
* Fix in MKC_CHECK_PROTOTYPES. The problem was it says "found" for
undeclared prototypes.
* All FEATURES now check for _MKC_CHECK_<xxx> define. A check for
this define guarantees that #include <mkc_XXX.h> are not used
without appropriate MKC_FEATURES += <xxx> in Makefile.
* New publicly available mkc.conf.mk header was introduced. With a
help of it one can implement custom "FEATURES".
* MKC_CHECK_HEADERS, MKC_CHECK_HEADER_FILES, MKC_CHECK_DEFINES,
MKC_CHECK_TYPES, MKC_CHECK_VARS, MKC_CHECK_MEMBERS,
MKC_CHECK_FUNCS<n>, MKC_CHECK_PROTOTYPES, MKC_CHECK_SIZEOF and
MKC_PROTOTYPE_HEADERS.<name> now accepts a list of comma-separated
headers for checking at once.
For example, on NetBSD sys/fts.h requires preceding sys/types.h and
sys/stat.h. So, now we can write
MKC_CHECK_HEADERS = sys/types.h,sys/stat.h,fts.h
* MKC_CHECK_FUNCS<n>: new variable MKC_FUNC_OR_DEFINE.<func> was introduced.
With a help of it one can check for
function declaration of equivalent define.
* mkc_imp.conf-final.mk: duplicated entries are not added to CPPFLAGS,
CFLAGS, LDADD and SRCS.
* Man page for mkc_check_decl, mkc_check_sizeof and mkc_check_headers
were updated.
* mkc.minitest.mk: new variable MKC_DIFF was introduced for diff(1)
command.
* mkc_check_decl: new check type funcordefine was introduced.
* Improvements and minor fixes in regression tests and examples.
* This release was sucessfully tested on FreeBSD-11.1, diverse
glibc-based Linuxes, NetBSD-8.99, OpenBSD-6.4 and SunOS-5.11.
* Deprecated features were removed: DPLIBS and PKG_CONFIG_DEPS variables,
builtin "endianess".
* Mon Aug 06 2018 jengelh@inai.de
- Update description from manpage.
* Fri Jul 13 2018 dap.darkness@gmail.com
- Update to 0.30.0:
* Variables MKC_{CHECK,REQUIRE}_HEADER_FILES were introduced.
* Improvements and addons to regression tests.
* Improvements and minor fixes in
mkc_check_{header,decl,funclib,sizeof}.
* This may fix checking failure if -Werror=strict-prototyping
is passed to CFLAGS.
* OBJDIR_<project> is now set correctly with MAKEOBJDIRPREFIX.
* Fix build failure (mkc_check_prog not found).
* Fix MKC_FEATURES "fgenln".
* mkc_check_common.sh is installed to libexec directory.
- Let's ignore more tests (mkshlib, mkstaticlib, mkpiclib, mkdll,
mkprofilelib) & examples (hello_cxx, hello_cxxlib)
to prevent build-time issue.
* Sun May 29 2016 dap.darkness@gmail.com
- Added mkcmake.macros to provide rpm macros.
- Added mk-configure-rpmlintrc to skip some useless warnings.
- Don't override upstream's files permissions.
- Prevented files-duplicate warnings.
- Group was fixed.
* Sun Jan 17 2016 mpluskal@suse.com
- Update to 0.29.1
* FIX: features "progname", "warn", "err" and "fgetln" as well
as _mkcfake.c file were added to the list of installed ones.
* Tue Dec 02 2014 dap.darkness@gmail.com
- 0.29.0 version:
* New variables MKC_CHECK_CC_OPTS and MKC_CHECK_CXX_OPTS were
introduced for checking C/C++ compiler's options;
* Makefile.inc and Makefile.common are included after
system variables are set, in particular CC and CXX;
* CC_TYPE is now set in mk.init.mk;
* Fixes for "err" and "warn" features. Now verr(3), verrx(3),
vwarn(3) and vwarnx(3) functions are detected correctly
(the problem was seen on gcc-4.9/armv7);
* Fix support for COMPATLIB. Objects for "features" should not
be generated outside compatibility library;
* A number of fixes in regression tests: support for latest GCC,
lib64 and lib/tri-ple-ts Linuxes;
* mkc_check_custom:
- new option -e for checking stderr for emptyness,
- new option -b for printing yes/no instead of 1/0,
- additional options to compiler are passed.
- `bmake cleandir-*` to clean examples dir after %check.
/usr/share/doc/packages/mk-configure-doc /usr/share/doc/packages/mk-configure-doc/examples /usr/share/doc/packages/mk-configure-doc/examples/Makefile /usr/share/doc/packages/mk-configure-doc/examples/Makefile.inc /usr/share/doc/packages/mk-configure-doc/examples/README /usr/share/doc/packages/mk-configure-doc/examples/check_compiler_opts /usr/share/doc/packages/mk-configure-doc/examples/check_compiler_opts/Makefile /usr/share/doc/packages/mk-configure-doc/examples/check_compiler_opts/expect.out /usr/share/doc/packages/mk-configure-doc/examples/check_compiler_opts/hello_world.c /usr/share/doc/packages/mk-configure-doc/examples/check_compiler_opts/test.mk /usr/share/doc/packages/mk-configure-doc/examples/fts /usr/share/doc/packages/mk-configure-doc/examples/fts/Makefile /usr/share/doc/packages/mk-configure-doc/examples/fts/fts.c /usr/share/doc/packages/mk-configure-doc/examples/hello_RBTREE /usr/share/doc/packages/mk-configure-doc/examples/hello_RBTREE/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_RBTREE/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_RBTREE/hello_RBTREE.c /usr/share/doc/packages/mk-configure-doc/examples/hello_RBTREE/input.in /usr/share/doc/packages/mk-configure-doc/examples/hello_RBTREE/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_SLIST /usr/share/doc/packages/mk-configure-doc/examples/hello_SLIST/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_SLIST/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_SLIST/hello_SLIST.c /usr/share/doc/packages/mk-configure-doc/examples/hello_SLIST/input.in /usr/share/doc/packages/mk-configure-doc/examples/hello_SLIST/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/Makefile.inc /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/hello1 /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/hello1/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/hello1/hello1.c /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/hello1/hello1.pod /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/hello2 /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/hello2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/hello2/hello2.c /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/hello2/hello2.pod /usr/share/doc/packages/mk-configure-doc/examples/hello_TARGETS/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/proj /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/proj/AUTHORS /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/proj/COPYING /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/proj/ChangeLog /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/proj/Makefile.in /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/proj/NEWS /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/proj/README /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/proj/configure.ac /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/proj/hello_autoconf.c /usr/share/doc/packages/mk-configure-doc/examples/hello_autoconf/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/proj /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/proj/AUTHORS /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/proj/COPYING /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/proj/ChangeLog /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/proj/Makefile.am /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/proj/NEWS /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/proj/README /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/proj/configure.ac /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/proj/main.c /usr/share/doc/packages/mk-configure-doc/examples/hello_autotools/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_calc2 /usr/share/doc/packages/mk-configure-doc/examples/hello_calc2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_calc2/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_calc2/expressions.txt /usr/share/doc/packages/mk-configure-doc/examples/hello_calc2/lex.l /usr/share/doc/packages/mk-configure-doc/examples/hello_calc2/parser.y /usr/share/doc/packages/mk-configure-doc/examples/hello_calc2/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/Makefile.inc /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/libcmpt /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/libcmpt/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/prog1 /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/prog1/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/prog1/prog1.c /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/prog2 /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/prog2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/prog2/prog2.c /usr/share/doc/packages/mk-configure-doc/examples/hello_compatlib/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_compilers /usr/share/doc/packages/mk-configure-doc/examples/hello_compilers/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_compilers/compiler_test.c /usr/share/doc/packages/mk-configure-doc/examples/hello_compilers/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_compilers/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/custom_tests /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/custom_tests/alloca_in_alloca_h.c /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/custom_tests/alloca_in_stdlib_h.c /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/custom_tests/cxx_with_templates.cc /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/custom_tests/shtest /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/custom_tests/true_is_available /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/hello_customtests.c /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests2 /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests2/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests2/hello_customtests2.c /usr/share/doc/packages/mk-configure-doc/examples/hello_customtests2/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/five.c /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/five.h /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/hello_msg.cc /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/hello_msg.h /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/main.cc /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/seven.c /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/seven.h /usr/share/doc/packages/mk-configure-doc/examples/hello_cxx/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/Makefile.inc /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxapp /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxapp/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxapp/cxxapp.cc /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/dummy.c /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/hello_msg1.cpp /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/hello_msg2.cpp /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/include /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/include/hello_msg.h /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/include/impl /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/include/impl/hello_msg1.h /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/include/impl/hello_msg2.h /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib/linkme.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib2 /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib2/hello_msg3.cxx /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib2/include /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib2/include/hello_msg2.h /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/cxxlib2/linkme.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_cxxlib/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/Makefile.inc /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dict /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dict/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dict/dict.1 /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dict/dict.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictd /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictd/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictd/dictd.8 /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictd/dictd.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictfmt /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictfmt/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictfmt/dictfmt.1 /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictfmt/dictfmt.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictzip /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictzip/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictzip/dictzip.1 /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/dictzip/dictzip.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/doc /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/doc/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/doc/doc.txt /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libcommon /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libcommon/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libcommon/iswalnum.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libcommon/str.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libdz /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libdz/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libdz/dz.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libdz/export.sym /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libmaa /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libmaa/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libmaa/export.sym /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libmaa/log.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libmaa/prime.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/libmaa/set.c /usr/share/doc/packages/mk-configure-doc/examples/hello_dictd/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_errwarn /usr/share/doc/packages/mk-configure-doc/examples/hello_errwarn/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_errwarn/Makefile.inc /usr/share/doc/packages/mk-configure-doc/examples/hello_errwarn/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_errwarn/hello.c /usr/share/doc/packages/mk-configure-doc/examples/hello_errwarn/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_fgetln /usr/share/doc/packages/mk-configure-doc/examples/hello_fgetln/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_fgetln/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_fgetln/hello.c /usr/share/doc/packages/mk-configure-doc/examples/hello_fgetln/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_files /usr/share/doc/packages/mk-configure-doc/examples/hello_files/DEBIAN /usr/share/doc/packages/mk-configure-doc/examples/hello_files/DEBIAN/control /usr/share/doc/packages/mk-configure-doc/examples/hello_files/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_files/expect.NetBSD.out /usr/share/doc/packages/mk-configure-doc/examples/hello_files/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_files/shell_func.7 /usr/share/doc/packages/mk-configure-doc/examples/hello_files/shell_func.texinfo /usr/share/doc/packages/mk-configure-doc/examples/hello_files/shell_func1 /usr/share/doc/packages/mk-configure-doc/examples/hello_files/shell_func2 /usr/share/doc/packages/mk-configure-doc/examples/hello_files/shell_func3 /usr/share/doc/packages/mk-configure-doc/examples/hello_files/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_glib2 /usr/share/doc/packages/mk-configure-doc/examples/hello_glib2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_glib2/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_glib2/hello_glib2.c /usr/share/doc/packages/mk-configure-doc/examples/hello_glib2/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_iconv /usr/share/doc/packages/mk-configure-doc/examples/hello_iconv/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_iconv/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_iconv/hello_iconv.c /usr/share/doc/packages/mk-configure-doc/examples/hello_iconv/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_lex /usr/share/doc/packages/mk-configure-doc/examples/hello_lex/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_lex/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_lex/hello_lex.l /usr/share/doc/packages/mk-configure-doc/examples/hello_lex/input.txt /usr/share/doc/packages/mk-configure-doc/examples/hello_lex/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbar /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbar/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbar/bar.c /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbar/bar.h /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbaz /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbaz/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbaz/baz.c /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbaz/include /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbaz/include/baz.h /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libbaz/linkme.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libfoo /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libfoo/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libfoo/foo.c /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libfoo/foo.h /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libfoo/linkme.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libfooqux /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libfooqux/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libfooqux/fooqux.c /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/libs/libfooqux/fooqux.h /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/progs /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/progs/foobaz /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/progs/foobaz/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/progs/foobaz/foobaz.c /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/progs/fooquxfoobar /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/progs/fooquxfoobar/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/progs/fooquxfoobar/fooquxfoobar.c /usr/share/doc/packages/mk-configure-doc/examples/hello_libdeps/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_lua /usr/share/doc/packages/mk-configure-doc/examples/hello_lua/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_lua/bar.lua /usr/share/doc/packages/mk-configure-doc/examples/hello_lua/baz.c /usr/share/doc/packages/mk-configure-doc/examples/hello_lua/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_lua/foo.lua /usr/share/doc/packages/mk-configure-doc/examples/hello_lua/foobar.in /usr/share/doc/packages/mk-configure-doc/examples/hello_lua/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_lua2 /usr/share/doc/packages/mk-configure-doc/examples/hello_lua2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_lua2/bar.lua /usr/share/doc/packages/mk-configure-doc/examples/hello_lua2/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_lua2/foo.lua /usr/share/doc/packages/mk-configure-doc/examples/hello_lua2/foobar.in /usr/share/doc/packages/mk-configure-doc/examples/hello_lua2/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_lua3 /usr/share/doc/packages/mk-configure-doc/examples/hello_lua3/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_lua3/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_lua3/socket_bar.lua /usr/share/doc/packages/mk-configure-doc/examples/hello_lua3/socket_baz.c /usr/share/doc/packages/mk-configure-doc/examples/hello_lua3/socket_foo.lua /usr/share/doc/packages/mk-configure-doc/examples/hello_lua3/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/app /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/app/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/app/app.c /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/plugin1 /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/plugin1/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/plugin1/plugin1.c /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/plugin2 /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/plugin2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/plugin2/plugin2.c /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2 /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/app /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/app/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/app/app.c /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/plugin1 /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/plugin1/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/plugin1/plugin1.c /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/plugin2 /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/plugin2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/plugin2/plugin2.c /usr/share/doc/packages/mk-configure-doc/examples/hello_plugins2/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_progs /usr/share/doc/packages/mk-configure-doc/examples/hello_progs/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_progs/client.c /usr/share/doc/packages/mk-configure-doc/examples/hello_progs/client_puts.c /usr/share/doc/packages/mk-configure-doc/examples/hello_progs/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_progs/server.c /usr/share/doc/packages/mk-configure-doc/examples/hello_progs/server_puts.c /usr/share/doc/packages/mk-configure-doc/examples/hello_progs/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_progs2 /usr/share/doc/packages/mk-configure-doc/examples/hello_progs2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_progs2/client.c /usr/share/doc/packages/mk-configure-doc/examples/hello_progs2/common.c /usr/share/doc/packages/mk-configure-doc/examples/hello_progs2/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_progs2/server.c /usr/share/doc/packages/mk-configure-doc/examples/hello_progs2/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_require_tools /usr/share/doc/packages/mk-configure-doc/examples/hello_require_tools/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_require_tools/fake /usr/share/doc/packages/mk-configure-doc/examples/hello_requirements /usr/share/doc/packages/mk-configure-doc/examples/hello_requirements/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_requirements/custom_check1.c /usr/share/doc/packages/mk-configure-doc/examples/hello_requirements/custom_check2.c /usr/share/doc/packages/mk-configure-doc/examples/hello_requirements/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_requirements/hello_world.c /usr/share/doc/packages/mk-configure-doc/examples/hello_requirements/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/hello_world.1 /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/hello_world2 /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/hello_world3.in /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/main.c /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/more_scripts /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/more_scripts/script1 /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/more_scripts/script2 /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/more_scripts/script3 /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/msg.c /usr/share/doc/packages/mk-configure-doc/examples/hello_scripts/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_sizeof /usr/share/doc/packages/mk-configure-doc/examples/hello_sizeof/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_sizeof/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_sizeof/sizeof_test.c /usr/share/doc/packages/mk-configure-doc/examples/hello_sizeof/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy/getline.c /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy/hello.c /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy/input.in /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy/strlcpy.c /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy2 /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy2/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy2/hello.c /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy2/input.in /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy2/missing /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy2/missing/getline.c /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy2/missing/strlcpy.c /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy2/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy3 /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy3/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy3/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy3/hello.c /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy3/input.in /usr/share/doc/packages/mk-configure-doc/examples/hello_strlcpy3/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog1 /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog1/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog1/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog1/prog1.awk.in /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog1/prog1.c /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog1/prog1.sh /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog1/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog2 /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog2/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog2/prog2.c /usr/share/doc/packages/mk-configure-doc/examples/hello_subdirs/prog2/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/Makefile.inc /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/docs /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/docs/LICENSE /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/docs/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/docs/NEWS /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/docs/README /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/fsck_superfs /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/fsck_superfs/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/fsck_superfs/fsck_superfs.8 /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/fsck_superfs/fsck_superfs.c /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/mkfs_superfs /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/mkfs_superfs/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/mkfs_superfs/mkfs_superfs.8 /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/mkfs_superfs/mkfs_superfs.c /usr/share/doc/packages/mk-configure-doc/examples/hello_superfs/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_world /usr/share/doc/packages/mk-configure-doc/examples/hello_world/COPYRIGHT /usr/share/doc/packages/mk-configure-doc/examples/hello_world/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_world/README /usr/share/doc/packages/mk-configure-doc/examples/hello_world/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_world/hello_world.c /usr/share/doc/packages/mk-configure-doc/examples/hello_world/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_xxzip /usr/share/doc/packages/mk-configure-doc/examples/hello_xxzip/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_xxzip/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_xxzip/test.mk /usr/share/doc/packages/mk-configure-doc/examples/hello_xxzip/tutorial.pod /usr/share/doc/packages/mk-configure-doc/examples/hello_xxzip/xxzip.c /usr/share/doc/packages/mk-configure-doc/examples/hello_xxzip/xxzip.pod /usr/share/doc/packages/mk-configure-doc/examples/hello_yacc /usr/share/doc/packages/mk-configure-doc/examples/hello_yacc/Makefile /usr/share/doc/packages/mk-configure-doc/examples/hello_yacc/calc.y /usr/share/doc/packages/mk-configure-doc/examples/hello_yacc/expect.out /usr/share/doc/packages/mk-configure-doc/examples/hello_yacc/input.txt /usr/share/doc/packages/mk-configure-doc/examples/hello_yacc/test.mk /usr/share/doc/packages/mk-configure-doc/examples/help_target /usr/share/doc/packages/mk-configure-doc/examples/help_target/Makefile /usr/share/doc/packages/mk-configure-doc/examples/help_target/expect.out /usr/share/doc/packages/mk-configure-doc/examples/help_target/print_value.c /usr/share/doc/packages/mk-configure-doc/examples/help_target/test.mk /usr/share/doc/packages/mk-configure-doc/examples/helpers /usr/share/doc/packages/mk-configure-doc/examples/helpers/Makefile /usr/share/doc/packages/mk-configure-doc/examples/helpers/mkc_fake_strip /usr/share/doc/packages/mk-configure-doc/examples/helpers/mkc_long_lines /usr/share/doc/packages/mk-configure-doc/examples/helpers/mkc_long_lines.in /usr/share/doc/packages/mk-configure-doc/examples/helpers/mkc_test_helper /usr/share/doc/packages/mk-configure-doc/examples/helpers/mkc_test_helper2 /usr/share/doc/packages/mk-configure-doc/examples/helpers/mkc_test_helper3 /usr/share/doc/packages/mk-configure-doc/examples/helpers/mkc_test_helper_paths /usr/share/doc/packages/mk-configure-doc/examples/helpers/mkc_test_nm /usr/share/doc/packages/mk-configure-doc/examples/pkgconfig3 /usr/share/doc/packages/mk-configure-doc/examples/pkgconfig3/Makefile /usr/share/doc/packages/mk-configure-doc/examples/pkgconfig3/expect.out /usr/share/doc/packages/mk-configure-doc/examples/pkgconfig3/pkgconfig3.c /usr/share/doc/packages/mk-configure-doc/examples/pkgconfig3/test.mk /usr/share/doc/packages/mk-configure-doc/examples/subprojects /usr/share/doc/packages/mk-configure-doc/examples/subprojects/Makefile /usr/share/doc/packages/mk-configure-doc/examples/subprojects/expect.out /usr/share/doc/packages/mk-configure-doc/examples/subprojects/hello /usr/share/doc/packages/mk-configure-doc/examples/subprojects/hello/Makefile /usr/share/doc/packages/mk-configure-doc/examples/subprojects/hello/hello_subprojects.1.in /usr/share/doc/packages/mk-configure-doc/examples/subprojects/hello/hello_subprojects.c /usr/share/doc/packages/mk-configure-doc/examples/subprojects/hello/hello_subprojects2.in /usr/share/doc/packages/mk-configure-doc/examples/subprojects/hello/test.mk /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello1 /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello1/Makefile /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello1/hello1.c /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello1/hello1.h /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello1/linkme.mk /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello2 /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello2/hello2.3 /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello2/hello2.c /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello2/include /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello2/include/hello2.h /usr/share/doc/packages/mk-configure-doc/examples/subprojects/libhello2/linkme.mk /usr/share/doc/packages/mk-configure-doc/examples/subprojects/test.mk /usr/share/doc/packages/mk-configure-doc/examples/subprojects/version.mk /usr/share/doc/packages/mk-configure-doc/examples/tools /usr/share/doc/packages/mk-configure-doc/examples/tools/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools/expect.out /usr/share/doc/packages/mk-configure-doc/examples/tools/libs /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/bar /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/bar/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/bar/bar.c /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/bar/bar.h /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/foo /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/foo/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/foo/foo.c /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/foo/foo.h /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/qux /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/qux/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/qux/qux.c /usr/share/doc/packages/mk-configure-doc/examples/tools/libs/qux/qux.h.in /usr/share/doc/packages/mk-configure-doc/examples/tools/test.mk /usr/share/doc/packages/mk-configure-doc/examples/tools/tools /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog1 /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog1/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog1/prog1.c /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog2 /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog2/prog2.c /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog3 /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog3/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog3/prog3.c /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog4 /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog4/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools/tools/prog4/prog4.c /usr/share/doc/packages/mk-configure-doc/examples/tools2 /usr/share/doc/packages/mk-configure-doc/examples/tools2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/expect.out /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/bar /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/bar/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/bar/bar.c /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/bar/bar.h /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/foo /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/foo/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/foo/foo.c /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/foo/foo.h /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/qux /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/qux/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/qux/qux.c /usr/share/doc/packages/mk-configure-doc/examples/tools2/libs/qux/qux.h.in /usr/share/doc/packages/mk-configure-doc/examples/tools2/test.mk /usr/share/doc/packages/mk-configure-doc/examples/tools2/tests /usr/share/doc/packages/mk-configure-doc/examples/tools2/tests/prog1 /usr/share/doc/packages/mk-configure-doc/examples/tools2/tests/prog1/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/tests/prog2 /usr/share/doc/packages/mk-configure-doc/examples/tools2/tests/prog2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/tests/prog3 /usr/share/doc/packages/mk-configure-doc/examples/tools2/tests/prog3/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/tests/prog4 /usr/share/doc/packages/mk-configure-doc/examples/tools2/tests/prog4/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog1 /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog1/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog1/prog1.c /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog2 /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog2/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog2/prog2.c /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog3 /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog3/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog3/prog3.c /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog4 /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog4/Makefile /usr/share/doc/packages/mk-configure-doc/examples/tools2/tools/prog4/prog4.c /usr/share/doc/packages/mk-configure-doc/presentation.pdf
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Mar 9 16:38:47 2026