Changeset 3140 for trunk/src/kmk/SMakefile.template
- Timestamp:
- Mar 14, 2018, 10:28:10 PM (7 years ago)
- Location:
- trunk/src/kmk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk
-
Property svn:mergeinfo
set to
/vendor/gnumake/current merged eligible
-
Property svn:mergeinfo
set to
-
trunk/src/kmk/SMakefile.template
r2591 r3140 4 4 # run 'build.sh' instead. 5 5 # 6 # Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 7 # 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 6 # Copyright (C) 1995-2016 Free Software Foundation, Inc. 8 7 # This file is part of GNU Make. 9 8 # … … 27 26 # Ultrix 2.2 make doesn't expand the value of VPATH. 28 27 VPATH = /make-%VERSION%/ 29 # This must repeat the value, because configure will remove `VPATH = .'.28 # This must repeat the value, because configure will remove 'VPATH = .'. 30 29 srcdir = /make-%VERSION%/ 31 30 … … 39 38 40 39 # Define these for your system as follows: 41 # -DNO_ARCHIVES To disable `ar' archive support.40 # -DNO_ARCHIVES To disable 'ar' archive support. 42 41 # -DNO_FLOAT To avoid using floating-point numbers. 43 42 # -DENUM_BITFIELDS If the compiler isn't GCC but groks enum foo:2. … … 46 45 # so beware. 47 46 # NeXT 1.0a uses an old version of GCC, which required -D__inline=inline. 48 # See also `config.h'.47 # See also 'config.h'. 49 48 defines = 50 49 51 50 # Which flavor of remote job execution support to use. 52 # The code is found in `remote-$(REMOTE).c'.51 # The code is found in 'remote-$(REMOTE).c'. 53 52 REMOTE = stub 54 53 … … 84 83 exec_prefix = 85 84 86 # Directory to install `make' in.85 # Directory to install 'make' in. 87 86 bindir = sc:c 88 # Directory to find libraries in for `-lXXX'.87 # Directory to find libraries in for '-lXXX'. 89 88 libdir = lib: 90 89 # Directory to search by default for included makefiles. … … 96 95 # Number to put on the man page filename. 97 96 manext = 1 98 # Prefix to put on installed `make' binary file name.97 # Prefix to put on installed 'make' binary file name. 99 98 binprefix = 100 # Prefix to put on installed `make' man page file name.99 # Prefix to put on installed 'make' man page file name. 101 100 manprefix = $(binprefix) 102 101 103 102 # Whether or not make needs to be installed setgid. 104 # The value should be either `true' or `false'.105 # On many systems, the getloadavg function (used to implement the `-l'103 # The value should be either 'true' or 'false'. 104 # On many systems, the getloadavg function (used to implement the '-l' 106 105 # switch) will not work unless make is installed setgid kmem. 107 106 install_setgid = false … … 109 108 group = sys 110 109 111 # Program to install `make'.110 # Program to install 'make'. 112 111 INSTALL_PROGRAM = copy 113 112 # Program to install the man page. … … 125 124 CTAGS = ctags -w 126 125 127 objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o \ 128 rule.o implicit.o default.o variable.o expand.o function.o \ 129 vpath.o version.o ar.o arscan.o signame.o strcache.o hash.o \ 130 remote-$(REMOTE).o $(GLOB) $(GETOPT) $(ALLOCA) $(extras) 126 #guile = guile.o 127 128 objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o \ 129 rule.o implicit.o default.o variable.o expand.o function.o \ 130 vpath.o version.o ar.o arscan.o signame.o strcache.o hash.o \ 131 output.o remote-$(REMOTE).o $(GLOB) $(GETOPT) $(ALLOCA) \ 132 $(extras) $(guile) 133 131 134 srcs = $(srcdir)commands.c $(srcdir)job.c $(srcdir)dir.c \ 132 135 $(srcdir)file.c $(srcdir)getloadavg.c $(srcdir)misc.c \ … … 135 138 $(srcdir)variable.c $(srcdir)expand.c $(srcdir)function.c \ 136 139 $(srcdir)vpath.c $(srcdir)version.c $(srcdir)hash.c \ 137 $(srcdir) remote-$(REMOTE).c\138 $(srcdir)ar.c $(srcdir)arscan.c $(srcdir)strcache.c 139 $(srcdir)signame.c $(srcdir)signame.h $(GETOPT_SRC) 140 $(srcdir)guile.c $(srcdir)remote-$(REMOTE).c \ 141 $(srcdir)ar.c $(srcdir)arscan.c $(srcdir)strcache.c \ 142 $(srcdir)signame.c $(srcdir)signame.h $(GETOPT_SRC) \ 140 143 $(srcdir)commands.h $(srcdir)dep.h $(srcdir)file.h \ 141 $(srcdir)job.h $(srcdir)make.h $(srcdir)rule.h \ 144 $(srcdir)job.h $(srcdir)makeint.h $(srcdir)rule.h \ 145 $(srcdir)output.c $(srcdir)output.h \ 142 146 $(srcdir)variable.h $(ALLOCA_SRC) $(srcdir)config.h.in 143 147 … … 149 153 info: make.info 150 154 dvi: make.dvi 151 # Some makes apparently use .PHONY as the default goal if it is before `all'.155 # Some makes apparently use .PHONY as the default goal if it is before 'all'. 152 156 .PHONY: all check info dvi 153 157
Note:
See TracChangeset
for help on using the changeset viewer.