Ignore:
Timestamp:
Mar 14, 2018, 10:28:10 PM (7 years ago)
Author:
bird
Message:

kmk: Merged in changes from GNU make 4.2.1 (2e55f5e4abdc0e38c1d64be703b446695e70b3b6 / https://git.savannah.gnu.org/git/make.git).

Location:
trunk/src/kmk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk

  • trunk/src/kmk/README.Amiga

    r2591 r3140  
    1212- Allows to use Device-Names in targets:
    1313
    14         c:make : make.o
     14        c:make : make.o
    1515
    1616    is ok. To distinguish between device-names and target : or ::, MAKE
     
    2020- Replaces @@ by a newline in any command line:
    2121
    22         if exists make @@\
    23             delete make.bak quiet @@\
    24             rename make make.bak @@\
    25         endif @@\
    26         $(CC) Link Make.o To make
     22        if exists make @@\
     23            delete make.bak quiet @@\
     24            rename make make.bak @@\
     25        endif @@\
     26        $(CC) Link Make.o To make
    2727
    28     works. Note that the @@ must stand alone (ie. "make@@\" is illegal).
    29     Also be carefull that there is a space after the "\" (ie, at the
     28    works. Note that the @@ must stand alone (i.e., "make@@\" is illegal).
     29    Also be careful that there is a space after the "\" (i.e., at the
    3030    beginning of the next line).
    3131- Can be made resident to save space and time
     
    3737    dummy.h : src/*.c
    3838
    39 tries to make dummy.h from "src/*.c" (ie. no wildcard-expansion takes
     39tries to make dummy.h from "src/*.c" (i.e., no wildcard-expansion takes
    4040place). You have to use "$(wildcard src/*.c)" instead.
    4141
     
    4343----------------------
    4444
    45 To recompile, you need SAS/C 6.51. make itself is not neccessary, there
     45To recompile, you need SAS/C 6.51. make itself is not necessary, there
    4646is an smakefile.
    4747
    48481. Copy config.ami to config.h
    49 2. If you use make to compie, copy Makefile.ami to Makefile and
     492. If you use make to compile, copy Makefile.ami to Makefile and
    5050    glob/Makefile.ami to glob/Makefile. Copy make into the current
    5151    directory.
     
    5555INSTALLATION
    5656
    57 Copy make somewhere in your search path (eg. sc:c or sc:bin).
     57Copy make somewhere in your search path (e.g., sc:c or sc:bin).
    5858If you plan to use recursive makes, install make resident:
    5959
     
    6363
    6464-------------------------------------------------------------------------------
    65 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
    66 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
     65Copyright (C) 1995-2016 Free Software Foundation, Inc.
    6766This file is part of GNU Make.
    6867
Note: See TracChangeset for help on using the changeset viewer.