Changeset 1509 for trunk/src/kmk


Ignore:
Timestamp:
Apr 9, 2008, 2:40:05 AM (17 years ago)
Author:
bird
Message:

Environment / global variable renaming. Copyright header/year update.

Location:
trunk/src/kmk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/Makefile.kmk

    r1503 r1509  
    11# $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#
    226
    327
     
    3458TEMPLATE_BIN-KMK_LIBS = $(TEMPLATE_BIN_LIBS) $(TARGET_kmkmissing) $(LIB_KUTIL)
    3559ifdef ELECTRIC_HEAP # for electric heap (see electric.c) - windows only.
    36 ifeq ($(BUILD_TARGET),win)
     60ifeq ($(KBUILD_TARGET),win)
    3761 TEMPLATE_BIN-KMK_CFLAGS = $(TEMPLATE_BIN_CFLAGS) /FI$(PATH_CURRENT)/electric.h -DELECTRIC_HEAP=1
    3862else
     
    133157        CONFIG_PRETTY_COMMAND_PRINTING \
    134158        \
    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)\"
    138162kmk_DEFS.x86 = CONFIG_WITH_OPTIMIZATION_HACKS
    139163kmk_DEFS.amd64 = CONFIG_WITH_OPTIMIZATION_HACKS
     
    344368
    345369
    346 include $(PATH_KBUILD)/footer.kmk
     370include $(FILE_KBUILD_FOOTER)
    347371
    348372
     
    350374# Use checked in config.h instead of running ./Configure for it.
    351375#
    352 config.h.$(BUILD_TARGET) := config.h.$(BUILD_TARGET)
    353 $(PATH_TARGET)/config.h: $(config.h.$(BUILD_TARGET))
     376config.h.$(KBUILD_TARGET) := config.h.$(KBUILD_TARGET)
     377$(PATH_TARGET)/config.h: $(config.h.$(KBUILD_TARGET))
    354378        $(MKDIR) -p $(dir $@)
    355379        $(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#
    226
    327
     
    1236tstFileInfo_SOURCES = tstFileInfo.c
    1337
    14 include $(PATH_KBUILD)/footer.kmk
     38include $(FILE_KBUILD_FOOTER)
Note: See TracChangeset for help on using the changeset viewer.