Changeset 3581 for trunk/kStuff/kLdr
- Timestamp:
- Sep 3, 2007, 12:02:55 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/kStuff/kLdr/Makefile.kmk (modified) (7 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
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
Note:
See TracChangeset
for help on using the changeset viewer.
