1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
# $Id: Makefile.kmk 3637 2024-11-02 01:54:01Z bird $
## @file
# Top-Level Sub-Makefile for kBuild.
#
#
# Copyright (c) 2005-2024 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
include $(PATH_SUB_CURRENT)/src/Makefile.kmk
ifdef NIX_INSTALL_DIR
#
# When doing a unix install, install all the kBuild scripts and docs.
# TODO: Make this default and make it possible to disable it for in-tree development.
#
INSTALLS += kBuild-data
kBuild-data_TEMPLATE = DATA
kBuild-data_SOURCES := \
$(wildcard \
kBuild/*.kmk \
) \
$(foreach src,\
$(wildcard \
kBuild/tools/*.kmk \
kBuild/sdks/*.kmk \
kBuild/units/*.kmk \
kBuild/msgstyles/*.kmk \
kBuild/templates/*.kmk),\
$(src)=>$(subst kBuild/,,$(src)))
INSTALLS += kBuild-doc
kBuild-doc_TEMPLATE = DOC
kBuild-doc_SOURCES := $(wildcard \
kBuild/doc/*.txt \
kBuild/doc/*.html \
)
endif
#
# And install any binary only tools and dlls.
# TODO: Ship env.sh and envos2.cmd / envwin.cmd where applicable.
#
INSTALLS += kBuild_bin
kBuild_bin_INST = $(TEMPLATE_BIN_INST)
kBuild_bin_SOURCES =
kBuild_bin_SOURCES.os2 = \
kBuild/bin/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/libc06.dll=>libc06.dll \
kBuild/bin/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/libc061.dll=>libc061.dll \
kBuild/bin/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/libc062.dll=>libc062.dll \
kBuild/bin/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/libc063.dll=>libc063.dll \
kBuild/bin/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/libc064.dll=>libc064.dll \
kBuild/bin/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/libc065.dll=>libc065.dll
if1of ($(KBUILD_TARGET), nt win)
ifndef KBUILD_NEW_VCC
kBuild_bin_SOURCES.$(KBUILD_TARGET) = \
kBuild/bin/$(KBUILD_TARGET).$(KBUILD_TARGET_ARCH)/msvcr100.dll
endif
kBuild_bin_SOURCES.profile = \
D:/coding/kStuff/svn/trunk/out/win.$(KBUILD_TARGET_ARCH)/release/kStuff/bin/kPrf2.dll \
D:/coding/kStuff/svn/trunk/out/win.$(KBUILD_TARGET_ARCH)/release/kStuff/bin/kPrf2WinApiWrappers.dll
endif
include $(FILE_KBUILD_SUB_FOOTER)
|