diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-11 08:21:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-11 08:21:29 +0000 |
commit | 29cd838eab01ed7110f3ccb2e8c6a35c8a31dbcc (patch) | |
tree | 63ef546b10a81d461e5cf5ed9e98a68cd7dee1aa /src/lib/Makefile.kmk | |
parent | Initial commit. (diff) | |
download | kbuild-29cd838eab01ed7110f3ccb2e8c6a35c8a31dbcc.tar.xz kbuild-29cd838eab01ed7110f3ccb2e8c6a35c8a31dbcc.zip |
Adding upstream version 1:0.1.9998svn3589+dfsg.upstream/1%0.1.9998svn3589+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/lib/Makefile.kmk')
-rw-r--r-- | src/lib/Makefile.kmk | 109 |
1 files changed, 109 insertions, 0 deletions
diff --git a/src/lib/Makefile.kmk b/src/lib/Makefile.kmk new file mode 100644 index 0000000..a281d28 --- /dev/null +++ b/src/lib/Makefile.kmk @@ -0,0 +1,109 @@ +# $Id: Makefile.kmk 3551 2022-01-29 02:57:33Z bird $ +## @file +# Sub-makefile for various libraries and stuff. +# + +# +# Copyright (c) 2006-2016 knut st. osmundsen <bird-kBuild-spamx@anduin.net> +# +# This file is part of kBuild. +# +# kBuild is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# kBuild is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with kBuild. If not, see <http://www.gnu.org/licenses/> +# +# + +SUB_DEPTH = ../.. +include $(KBUILD_PATH)/subheader.kmk + +LIBRARIES += kDep +kDep_TEMPLATE = LIB +kDep_DEFS.win += NEED_ISBLANK=1 __WIN32__=1 +kDep_SOURCES = kDep.c +kDep_NOINST = 1 + +LIBRARIES += kUtil +kUtil_TEMPLATE = LIB +kUtil_DEFS.win = __WIN__ +kUtil_SOURCES = \ + crc32.c \ + md5.c \ + maybe_con_write.c \ + maybe_con_fwrite.c \ + is_console.c \ + dos2unix.c \ + kbuild_version.c \ + version_compare.c +kUtil_SOURCES.win = \ + get_codepage.c \ + msc_buffered_printf.c \ + win_get_processor_group_active_mask.c \ + nt_fullpath.c \ + nt_fullpath_cached.c \ + quote_argv.c \ + quoted_spawn.c \ + nt/nthlpcore.c \ + nt/nthlpfs.c \ + nt/ntdir.c \ + nt/ntstat.c \ + nt/ntunlink.c \ + nt/ntutimes.c \ + nt/nt_child_inject_standard_handles.c \ + nt/fts-nt.c \ + nt/kFsCache.c \ + kStuff/kHlp/CRT/kHlpCRTString.cpp \ + kStuff/kHlp/CRT/kHlpCRTAlloc.cpp +kUtil_SOURCES.solaris = \ + restartable-syscall-wrappers.c +#kUtil_SOURCES.linux = \ +# restartable-syscall-wrappers.c +kUtil_NOINST = 1 + +kbuild_version.c_DEFS = KBUILD_SVN_REV=$(KBUILD_SVN_REV) + +LIBRARIES.win += kWinStartup +kWinStartup_TEMPLATE = LIB +kWinStartup_SOURCES = startuphacks-win.c +kWinStartup_NOINST = 1 + +PROGRAMS += wrapper +wrapper_TEMPLATE = BIN +wrapper_SOURCES = wrapper.c +wrapper_NOINST = 1 + +PROGRAMS.win += tstNtStat +tstNtStat_TEMPLATE = BIN +tstNtStat_SOURCES = nt/tstNtStat.c +tstNtStat_LIBS = $(LIB_KUTIL) +tstNtStat_NOINST = 1 + +PROGRAMS.win += tstNtFts +tstNtFts_TEMPLATE = BIN +tstNtFts_SOURCES = nt/tstNtFts.c nt/fts-nt.c +tstNtFts_LIBS = $(LIB_KUTIL) +tstNtFts_NOINST = 1 + +PROGRAMS.win += tstkFsCache +tstkFsCache_TEMPLATE = BIN +tstkFsCache_SOURCES = nt/tstkFsCache.c +tstkFsCache_LIBS = $(LIB_KUTIL) +tstkFsCache_NOINST = 1 + +PROGRAMS += tstVersionCompare +tstVersionCompare_TEMPLATE = BIN +tstVersionCompare_SOURCES = version_compare.c +tstVersionCompare_DEFS = TEST +tstVersionCompare_NOINST = 1 + +include $(FILE_KBUILD_SUB_FOOTER) + |