Changeset 3581
- Timestamp:
- Sep 3, 2007, 12:02:55 AM (18 years ago)
- Location:
- trunk/kStuff
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kDbg/Makefile.kmk
r3552 r3581 1 1 # $Id$ 2 2 ## @file 3 # kDbg - The Debug Info Reader .3 # kDbg - The Debug Info Reader, sub-makefile. 4 4 # 5 5 … … 25 25 # 26 26 27 DEPTH = ../.. 28 include $(PATH_KBUILD)/header.kmk 27 DEPTH ?= ../.. 28 SUB_DEPTH = .. 29 include $(PATH_KBUILD)/subheader.kmk 29 30 30 31 # … … 34 35 kDbg_TEMPLATE = kStuffDLL 35 36 kDbg_DEFS = KDBG_BUILDING KDBG_RESIDES_IN_DLL 36 kDbg_INCS = ../kLdr37 37 kDbg_SOURCES := \ 38 38 kDbgModule.cpp \ … … 43 43 kDbgModWinDbgHelp.cpp 44 44 45 46 45 # 47 46 # kDbgStatic - The profiler module. … … 50 49 kDbgStatic_TEMPLATE = kStuffLIB 51 50 kDbgStatic_DEFS = KDBG_BUILDING 52 kDbgStatic_INCS = ../kLdr53 51 kDbgStatic_SOURCES = $(kDbg_SOURCES) 54 52 … … 66 64 67 65 # Generate the rules 68 include $(PATH_KBUILD)/ footer.kmk66 include $(PATH_KBUILD)/subfooter.kmk 69 67 -
trunk/kStuff/kErr/Makefile.kmk
r3579 r3581 1 1 # $Id$ 2 2 ## @file 3 # kErr - The Status Code API .3 # kErr - The Status Code API, sub-makefile. 4 4 # 5 5 … … 25 25 # 26 26 27 DEPTH = ../.. 28 include $(PATH_KBUILD)/header.kmk 27 DEPTH ?= ../.. 28 SUB_DEPTH ?= .. 29 include $(PATH_KBUILD)/subheader.kmk 29 30 30 31 # … … 42 43 # Generate case statements for kErrName(). 43 44 # 44 $(PATH_TARGET)/kErrNameConsts.h: ../include/k/kErrors.h $(MAKEFILE_CURRENT) | $(call DIRDEP,$(PATH_TARGET))45 $(PATH_TARGET)/kErrNameConsts.h: $(PATH_SUB_ROOT)/include/k/kErrors.h $(MAKEFILE_CURRENT) | $(call DIRDEP,$(PATH_TARGET)) 45 46 $(RM) -f $@ 46 47 $(SED) \ … … 49 50 -e '/K[A-Z_]*ERR_[A-Z0-9_]*BASE/d' \ 50 51 -e '/K[A-Z_]*ERR_[A-Z0-9_]*END/d' \ 51 ../include/k/kErrors.h> $@52 $< > $@ 52 53 53 54 54 55 # Generate the rules 55 include $(PATH_KBUILD)/ footer.kmk56 include $(PATH_KBUILD)/subfooter.kmk 56 57 -
trunk/kStuff/kHlp/Makefile.kmk
r3579 r3581 1 1 # $Id$ 2 2 ## @file 3 # kHlp - The Helper API .3 # kHlp - The Helper API, sub-makefile. 4 4 # 5 5 … … 25 25 # 26 26 27 DEPTH = ../.. 28 include $(PATH_KBUILD)/header.kmk 27 DEPTH ?= ../.. 28 SUB_DEPTH = .. 29 include $(PATH_KBUILD)/subheader.kmk 29 30 30 31 # … … 112 113 113 114 # Generate the rules 114 include $(PATH_KBUILD)/ footer.kmk115 include $(PATH_KBUILD)/subfooter.kmk 115 116 -
trunk/kStuff/kLdr/Makefile.kmk
-
Property svn:eol-style
set to
native
r3579 r3581 1 # $Id$ # $Id$1 # $Id$ 2 2 ## @file 3 # 4 # kBuild Makefile for the kLdr.5 # 6 # Copyright (c) 2006 knut st. osmundsen <bird@anduin.net>7 # 8 # 9 # This file is part of k Ldr.10 # 11 # k Ldr is free software; you can redistribute it and/or modify12 # it under the terms of the GNU General Public License as published by13 # the Free Software Foundation; either version 2 of the License, or14 # (at your option) any later version.15 # 16 # k Ldris distributed in the hope that it will be useful,3 # kLdr - The Dynamic Loader, sub-makefile. 4 # 5 6 # 7 # Copyright (c) 2006-2007 knut st. osmundsen <bird-src-spam@anduin.net> 8 # 9 # This file is part of kStuff. 10 # 11 # kStuff is free software; you can redistribute it and/or 12 # modify it under the terms of the GNU Lesser General Public 13 # License as published by the Free Software Foundation; either 14 # version 2.1 of the License, or (at your option) any later version. 15 # 16 # kStuff is distributed in the hope that it will be useful, 17 17 # but WITHOUT ANY WARRANTY; without even the implied warranty of 18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 # GNUGeneral Public License for more details.20 # 21 # You should have received a copy of the GNU General Public License22 # along with kLdr; if not, write to the Free Software23 # Foundation, Inc., 5 9 Temple Place, Suite 330, Boston, MA 02111-1307USA24 # 25 # 26 27 28 DEPTH = ../..29 include $(PATH_KBUILD)/ header.kmk18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 19 # Lesser General Public License for more details. 20 # 21 # You should have received a copy of the GNU Lesser General Public 22 # License along with kStuff; if not, write to the Free Software 23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 24 # 25 # 26 27 DEPTH ?= ../.. 28 SUB_DEPTH = .. 29 include $(PATH_KBUILD)/subheader.kmk 30 30 31 31 # … … 66 66 TEMPLATE_TST_LDFLAGS = 67 67 endif 68 TEMPLATE_TST_INCS = . ../include68 TEMPLATE_TST_INCS := $(PATH_SUB_CURRENT) $(PATH_SUB_ROOT)/include 69 69 70 70 … … 72 72 # The kLdr DLL. 73 73 # 74 DLLS = kLdr74 DLLS += kLdr 75 75 kLdr_ASTOOL = NASM 76 76 ifeq ($(BUILD_TARGET),win) … … 112 112 kLdr_LDFLAGS = -nostdlib 113 113 endif 114 kLdr_INCS = . ../include114 kLdr_INCS := $(PATH_SUB_CURRENT) $(PATH_SUB_ROOT)/include 115 115 kLdr_SOURCES = \ 116 116 kLdr.c \ … … 144 144 kLdrStatic_TEMPLATE = kStuffLIB 145 145 kLdrStatic_SDKS.win = WINPSDK W2K3DDK 146 kLdrStatic_INCS = . ../include146 kLdrStatic_INCS := $(PATH_SUB_CURRENT) $(PATH_SUB_ROOT)/include 147 147 kLdrStatic_DEFS.win = __WIN__ 148 148 kLdrStatic_DEFS.os2 = __OS2__ … … 171 171 kLdrExeStub-win_SDKS.x86 = WIN32SDK 172 172 kLdrExeStub-win_SDKS.amd64 = WIN64SDK 173 kLdrExeStub-win_INCS = . ../include173 kLdrExeStub-win_INCS := $(PATH_SUB_CURRENT) $(PATH_SUB_ROOT)/include 174 174 kLdrExeStub-win_DEFS = __WIN__ 175 175 kLdrExeStub-win_CFLAGS = -W3 -Zl … … 214 214 215 215 216 217 216 # Generate rules. 218 include $(PATH_KBUILD)/footer.kmk 219 220 221 217 include $(PATH_KBUILD)/subfooter.kmk 218 -
Property svn:eol-style
set to
-
trunk/kStuff/kProfiler2/Makefile.kmk
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Id
r3566 r3581 1 # $Id :$1 # $Id$ 2 2 ## @file 3 # kProfiler Mark 2 3 # kProfiler Mark 2, sub-makefile. 4 4 # 5 5 … … 25 25 26 26 27 DEPTH = ../.. 28 include $(PATH_KBUILD)/header.kmk 27 DEPTH ?= ../.. 28 SUB_DEPTH = .. 29 include $(PATH_KBUILD)/subheader.kmk 29 30 30 #LIBRARIES 31 DLLS 32 PROGRAMS 31 #LIBRARIES += kPrf2GC kPrf2R0 32 DLLS += kPrf2 33 PROGRAMS += kPrf2Read 33 34 34 35 … … 110 111 KPRF_LEAVE=_KPrfLeave 111 112 112 113 114 113 # 115 114 # kPrf2Read - The read & producer of statistics. … … 123 122 $(PATH_LIB)/kRdrStatic$(SUFF_LIB) \ 124 123 $(PATH_LIB)/kHlpCRTStatic$(SUFF_LIB) 125 126 # kLdr stuff127 KLDR_ROOT ?= $(PATH_CURRENT)/../kLdr128 kPrf2Read_INCS += $(KLDR_ROOT)129 124 130 125 … … 146 141 147 142 # Generate the rules 148 include $(PATH_KBUILD)/ footer.kmk143 include $(PATH_KBUILD)/subfooter.kmk 149 144 150 145 -
Property svn:eol-style
set to
-
trunk/kStuff/kRdr/Makefile.kmk
r3571 r3581 1 1 # $Id$ 2 2 ## @file 3 # kRdr - The File Provider .3 # kRdr - The File Provider, sub-makefile. 4 4 # 5 5 … … 25 25 # 26 26 27 DEPTH = ../.. 28 include $(PATH_KBUILD)/header.kmk 27 DEPTH ?= ../.. 28 SUB_DEPTH = .. 29 include $(PATH_KBUILD)/subheader.kmk 29 30 30 31 # … … 40 41 41 42 # Generate the rules 42 include $(PATH_KBUILD)/ footer.kmk43 include $(PATH_KBUILD)/subfooter.kmk 43 44
Note:
See TracChangeset
for help on using the changeset viewer.