home *** CD-ROM | disk | FTP | other *** search
/ Aminet 10 / aminetcdnumber101996.iso / Aminet / dev / c / make_bin.readme < prev    next >
Text File  |  1996-01-05  |  2KB  |  75 lines

  1. Short:    Port of GNU make with SAS/C (no ixemul.library required)
  2. Author:   GNU, Amiga port by Aaron "Optimizer" Digulla
  3. Uploader: Aaron "Optimizer" Digulla (digulla@fh-konstanz.de)
  4. Type:     dev/c
  5.  
  6. This archive contains a pure version of GNU make V3.75. Be sure to
  7. specify -a when you unLhA this archive or you have to set the
  8. pure bit afterwards (Protect make +p).
  9.  
  10. This is a pure Amiga port of GNU make 3.74. It needs no extra libraries or
  11. anything. It has the following features (in addition to any features of
  12. GNU make):
  13.  
  14. - Runs Amiga-Commands with SystemTags() (Execute)
  15. - Can run multi-line statements
  16. - Allows to use Device-Names in targets:
  17.  
  18.     c:make : make.o
  19.  
  20.     is ok. To distinguish between device-names and target : or ::, MAKE
  21.     looks for spaces. If there are any around :, it's taken as a target
  22.     delimiter, if there are none, it's taken as the name of a device. Note
  23.     that "make:make.o" tries to create "make.o" on the device "make:".
  24. - Replaces @@ by a newline in any command line:
  25.  
  26.     if exists make @@\
  27.         delete make.bak quiet @@\
  28.         rename make make.bak @@\
  29.     endif @@\
  30.     $(CC) Link Make.o To make
  31.  
  32.     works. Note that the @@ must stand alone (ie. "make@@\" is illegal).
  33.     Also be carefull that there is a space after the "\" (ie, at the
  34.     beginning of the next line).
  35. - Can be made resident to save space and time
  36. - To use "#?" as a wildcard, you must enclose it in "":
  37.  
  38.     delete "#?.o"
  39.  
  40. BUGS:
  41. - The line
  42.  
  43.     dummy.h : src/*.c
  44.  
  45. tries to make dummy.h from "src/*.c" (ie. no wildcard-expansion takes
  46. place). You have to use "$(wildcard src/*.c)" instead.
  47.  
  48. COMPILING FROM SCRATCH
  49.  
  50. To recompile, you need SAS/C 6.51. make itself is not neccessary, there
  51. is an smakefile.
  52.  
  53. 1. Copy config.ami to config.h
  54. 2. If you use make to compie, copy Makefile.ami to Makefile and
  55.     glob/Makefile.ami to glob/Makefile. Copy make into the current
  56.     directory.
  57.  
  58. 3. Run smake/make
  59.  
  60. INSTALLATION
  61.  
  62. Copy make somewhere in your search path (eg. sc:c or sc:bin).
  63. If you plan to use recursive makes, install make resident:
  64.  
  65.     Resident make Add
  66.  
  67.  
  68. ============================= Archive contents =============================
  69.  
  70. Original  Packed Ratio    Date     Time    Name
  71. -------- ------- ----- --------- --------  -------------
  72.    97124   54473 43.9% 07-Dec-95 11:25:16 +make
  73. -------- ------- ----- --------- --------
  74.    97124   54473 43.9% 16-Dec-95 10:43:22   1 files
  75.