Changeset 1509 for trunk/src/kmk
- Timestamp:
- Apr 9, 2008, 2:40:05 AM (17 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/Makefile.kmk
r1503 r1509 1 1 # $Id$ 2 ## @file 3 # kmk / GNU Make 4 # 5 6 # 7 # Copyright (c) 2004-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net> 8 # 9 # This file is part of kBuild. 10 # 11 # kBuild is free software; you can redistribute it and/or modify 12 # it under the terms of the GNU General Public License as published by 13 # the Free Software Foundation; either version 2 of the License, or 14 # (at your option) any later version. 15 # 16 # kBuild is distributed in the hope that it will be useful, 17 # but WITHOUT ANY WARRANTY; without even the implied warranty of 18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 # GNU General Public License for more details. 20 # 21 # You should have received a copy of the GNU General Public License 22 # along with kBuild; if not, write to the Free Software 23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 24 # 25 # 2 26 3 27 … … 34 58 TEMPLATE_BIN-KMK_LIBS = $(TEMPLATE_BIN_LIBS) $(TARGET_kmkmissing) $(LIB_KUTIL) 35 59 ifdef ELECTRIC_HEAP # for electric heap (see electric.c) - windows only. 36 ifeq ($( BUILD_TARGET),win)60 ifeq ($(KBUILD_TARGET),win) 37 61 TEMPLATE_BIN-KMK_CFLAGS = $(TEMPLATE_BIN_CFLAGS) /FI$(PATH_CURRENT)/electric.h -DELECTRIC_HEAP=1 38 62 else … … 133 157 CONFIG_PRETTY_COMMAND_PRINTING \ 134 158 \ 135 KBUILD_HOST=\"$( BUILD_TARGET)\" \136 KBUILD_HOST_ARCH=\"$( BUILD_TARGET_ARCH)\" \137 KBUILD_HOST_CPU=\"$( BUILD_TARGET_CPU)\"159 KBUILD_HOST=\"$(KBUILD_TARGET)\" \ 160 KBUILD_HOST_ARCH=\"$(KBUILD_TARGET_ARCH)\" \ 161 KBUILD_HOST_CPU=\"$(KBUILD_TARGET_CPU)\" 138 162 kmk_DEFS.x86 = CONFIG_WITH_OPTIMIZATION_HACKS 139 163 kmk_DEFS.amd64 = CONFIG_WITH_OPTIMIZATION_HACKS … … 344 368 345 369 346 include $( PATH_KBUILD)/footer.kmk370 include $(FILE_KBUILD_FOOTER) 347 371 348 372 … … 350 374 # Use checked in config.h instead of running ./Configure for it. 351 375 # 352 config.h.$( BUILD_TARGET) := config.h.$(BUILD_TARGET)353 $(PATH_TARGET)/config.h: $(config.h.$( BUILD_TARGET))376 config.h.$(KBUILD_TARGET) := config.h.$(KBUILD_TARGET) 377 $(PATH_TARGET)/config.h: $(config.h.$(KBUILD_TARGET)) 354 378 $(MKDIR) -p $(dir $@) 355 379 $(CP) $^ $@ -
trunk/src/kmk/w32/Makefile.kmk
r1179 r1509 1 # $Id: Makefile.kmk 1122 2007-09-25 06:16:26Z bird $ 1 # $Id: Makefile.kmk 785 2007-01-24 22:21:56Z bird $ 2 ## @file 3 # tstFileInfo / w32 4 # 5 6 # 7 # Copyright (c) 2007-2008 knut st. osmundsen <bird-kBuild-spam@anduin.net> 8 # 9 # This file is part of kBuild. 10 # 11 # kBuild is free software; you can redistribute it and/or modify 12 # it under the terms of the GNU General Public License as published by 13 # the Free Software Foundation; either version 2 of the License, or 14 # (at your option) any later version. 15 # 16 # kBuild is distributed in the hope that it will be useful, 17 # but WITHOUT ANY WARRANTY; without even the implied warranty of 18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 # GNU General Public License for more details. 20 # 21 # You should have received a copy of the GNU General Public License 22 # along with kBuild; if not, write to the Free Software 23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 24 # 25 # 2 26 3 27 … … 12 36 tstFileInfo_SOURCES = tstFileInfo.c 13 37 14 include $( PATH_KBUILD)/footer.kmk38 include $(FILE_KBUILD_FOOTER)
Note:
See TracChangeset
for help on using the changeset viewer.