VirtualBox

Changeset 501 in kBuild for vendor/gnumake/current/SMakefile


Ignore:
Timestamp:
Sep 15, 2006 2:30:32 AM (19 years ago)
Author:
bird
Message:

Load make-3.81/ into vendor/gnumake/current.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/gnumake/current/SMakefile

    r152 r501  
    1 # NOTE: If you have no `make' program at all to process this makefile, run
    2 # `build.sh' instead.
    3 #
    4 # Copyright (C) 1988, 89, 91, 92, 93, 94, 1995 Free Software Foundation, Inc.
     1# -*-Makefile-*- for building GNU make with smake
     2#
     3# NOTE: If you have no 'make' program at all to process this makefile,
     4# run 'build.sh' instead.
     5#
     6# Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
     7# 2005, 2006 Free Software Foundation, Inc.
    58# This file is part of GNU Make.
    69#
    7 # GNU Make is free software; you can redistribute it and/or modify
    8 # it under the terms of the GNU General Public License as published by
    9 # the Free Software Foundation; either version 2, or (at your option)
    10 # any later version.
    11 #
    12 # GNU Make is distributed in the hope that it will be useful,
    13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    15 # GNU General Public License for more details.
    16 #
    17 # You should have received a copy of the GNU General Public License
    18 # along with GNU Make; see the file COPYING.  If not, write to
    19 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
    20 # Boston, MA 02111-1307, USA.
     10# GNU Make is free software; you can redistribute it and/or modify it under the
     11# terms of the GNU General Public License as published by the Free Software
     12# Foundation; either version 2, or (at your option) any later version.
     13#
     14# GNU Make is distributed in the hope that it will be useful, but WITHOUT ANY
     15# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
     16# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
     17#
     18# You should have received a copy of the GNU General Public License along with
     19# GNU Make; see the file COPYING.  If not, write to the Free Software
     20# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    2121
    2222#
     
    2525
    2626# Ultrix 2.2 make doesn't expand the value of VPATH.
    27 VPATH = /make-3.81beta1/
     27VPATH = /make-3.81/
    2828# This must repeat the value, because configure will remove `VPATH = .'.
    29 srcdir = /make-3.81beta1/
     29srcdir = /make-3.81/
    3030
    3131CC = sc
     
    126126objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o      \
    127127       rule.o implicit.o default.o variable.o expand.o function.o       \
    128        vpath.o version.o ar.o arscan.o signame.o hash.o                 \
     128       vpath.o version.o ar.o arscan.o signame.o strcache.o hash.o      \
    129129       remote-$(REMOTE).o $(GLOB) $(GETOPT) $(ALLOCA) $(extras)
    130130srcs = $(srcdir)commands.c $(srcdir)job.c $(srcdir)dir.c             \
     
    135135       $(srcdir)vpath.c $(srcdir)version.c $(srcdir)hash.c           \
    136136       $(srcdir)remote-$(REMOTE).c                                     \
    137        $(srcdir)ar.c $(srcdir)arscan.c                                \
     137       $(srcdir)ar.c $(srcdir)arscan.c $(srcdir)strcache.c              \
    138138       $(srcdir)signame.c $(srcdir)signame.h $(GETOPT_SRC)            \
    139139       $(srcdir)commands.h $(srcdir)dep.h $(srcdir)file.h            \
     
    215215# --------------- DEPENDENCIES
    216216#
     217
     218# .deps/alloca.Po
    217219# dummy
     220
     221# .deps/ar.Po
     222ar.o ar.o: ar.c make.h config.h \
     223  getopt.h \
     224  gettext.h filedef.h hash.h dep.h \
     225
     226# .deps/arscan.Po
     227arscan.o arscan.o: arscan.c make.h config.h \
     228  getopt.h \
     229  gettext.h \
     230
     231# .deps/commands.Po
     232commands.o commands.o: commands.c make.h config.h \
     233  getopt.h \
     234  gettext.h dep.h filedef.h hash.h variable.h \
     235  job.h commands.h
     236
     237# .deps/default.Po
     238default.o default.o: default.c make.h config.h \
     239  getopt.h \
     240  gettext.h filedef.h hash.h variable.h rule.h \
     241  dep.h job.h commands.h
     242
     243# .deps/dir.Po
     244dir.o dir.o: dir.c make.h config.h \
     245  getopt.h \
     246  gettext.h hash.h \
     247
     248# .deps/expand.Po
     249expand.o expand.o: expand.c make.h config.h \
     250  getopt.h \
     251  gettext.h filedef.h hash.h \
     252  job.h commands.h \
     253  variable.h rule.h
     254
     255# .deps/file.Po
     256file.o file.o: file.c make.h config.h \
     257  getopt.h \
     258  gettext.h dep.h filedef.h \
     259  hash.h job.h commands.h \
     260  variable.h debug.h
     261
     262# .deps/function.Po
     263function.o function.o: function.c make.h config.h \
     264  getopt.h \
     265  gettext.h filedef.h hash.h variable.h dep.h \
     266  job.h commands.h debug.h
     267
     268# .deps/getloadavg.Po
    218269# dummy
    219 ar.o : \
    220  ar.c make.h config.h \
    221  getopt.h \
    222  gettext.h filedef.h \
    223  hash.h dep.h
    224 arscan.o : \
    225  arscan.c make.h config.h \
    226  getopt.h \
    227  gettext.h \
    228 
    229 commands.o : \
    230  commands.c make.h config.h \
    231  getopt.h \
    232  gettext.h dep.h \
    233  filedef.h hash.h variable.h job.h \
    234  commands.h
    235 default.o : \
    236  default.c make.h config.h \
    237  getopt.h \
    238  gettext.h filedef.h \
    239  hash.h variable.h rule.h dep.h job.h \
    240  commands.h
    241 dir.o : \
    242  dir.c make.h config.h \
    243  getopt.h \
    244  gettext.h hash.h \
    245 
    246 expand.o : \
    247  expand.c make.h config.h \
    248  getopt.h \
    249  gettext.h \
    250  filedef.h hash.h job.h \
    251  commands.h variable.h rule.h
    252 file.o : \
    253  file.c make.h config.h \
    254  getopt.h \
    255  gettext.h \
    256  dep.h filedef.h hash.h job.h \
    257  commands.h variable.h \
    258  debug.h
    259 function.o : \
    260  function.c make.h config.h \
    261  getopt.h \
    262  gettext.h filedef.h \
    263  hash.h variable.h dep.h job.h \
    264  commands.h debug.h
    265 getopt.o : \
    266  getopt.c config.h \
    267 
    268 getopt1.o : \
    269  getopt1.c config.h getopt.h \
    270 
    271 hash.o : \
    272  hash.c make.h config.h \
    273  getopt.h \
    274  gettext.h hash.h
    275 implicit.o : \
    276  implicit.c make.h config.h \
    277  getopt.h \
    278  gettext.h filedef.h \
    279  hash.h rule.h dep.h debug.h
    280 job.o : \
    281  job.c make.h config.h \
    282  getopt.h \
    283  gettext.h \
    284  job.h \
    285  debug.h filedef.h hash.h commands.h \
    286  variable.h \
    287 
    288 loadavg-getloadavg.o : \
    289  getloadavg.c config.h \
    290  make.h \
    291  getopt.h \
    292  gettext.h \
    293 
    294 main.o : \
    295  main.c make.h config.h \
    296  getopt.h \
    297  gettext.h dep.h \
    298  filedef.h hash.h variable.h job.h \
    299  commands.h rule.h debug.h \
    300 
    301 misc.o : \
    302  misc.c make.h config.h \
    303  getopt.h \
    304  gettext.h dep.h \
    305  debug.h
    306 read.o : \
    307  read.c make.h config.h \
    308  getopt.h \
    309  gettext.h \
    310  dep.h filedef.h hash.h \
    311  job.h commands.h \
    312  variable.h rule.h debug.h
    313 remake.o : \
    314  remake.c make.h config.h \
    315  getopt.h \
    316  gettext.h filedef.h \
    317  hash.h job.h \
    318  commands.h dep.h variable.h debug.h
     270
     271# .deps/getopt.Po
     272getopt.o getopt.o: getopt.c config.h \
     273
     274# .deps/getopt1.Po
     275getopt1.o getopt1.o: getopt1.c config.h getopt.h \
     276
     277# .deps/hash.Po
     278hash.o hash.o: hash.c make.h config.h \
     279  getopt.h \
     280  gettext.h hash.h
     281
     282# .deps/implicit.Po
     283implicit.o implicit.o: implicit.c make.h config.h \
     284  getopt.h \
     285  gettext.h filedef.h hash.h rule.h dep.h debug.h \
     286  variable.h job.h \
     287  commands.h
     288
     289# .deps/job.Po
     290job.o job.o: job.c make.h config.h \
     291  getopt.h \
     292  gettext.h job.h \
     293  debug.h filedef.h hash.h \
     294  commands.h variable.h \
     295
     296# .deps/loadavg-getloadavg.Po
     297loadavg-getloadavg.o loadavg-getloadavg.o: getloadavg.c config.h \
     298  make.h \
     299  getopt.h \
     300  gettext.h \
     301
     302# .deps/main.Po
     303main.o main.o: main.c make.h config.h \
     304  getopt.h \
     305  gettext.h dep.h filedef.h hash.h variable.h \
     306  job.h commands.h rule.h \
     307  debug.h getopt.h \
     308
     309# .deps/misc.Po
     310misc.o misc.o: misc.c make.h config.h \
     311  getopt.h \
     312  gettext.h dep.h debug.h
     313
     314# .deps/read.Po
     315read.o read.o: read.c make.h config.h \
     316  getopt.h \
     317  gettext.h \
     318  dep.h filedef.h hash.h job.h \
     319  commands.h variable.h rule.h debug.h \
     320
     321# .deps/remake.Po
     322remake.o remake.o: remake.c make.h config.h \
     323  getopt.h \
     324  gettext.h filedef.h hash.h job.h \
     325  commands.h dep.h \
     326  variable.h debug.h
     327
     328# .deps/remote-cstms.Po
    319329# dummy
    320 remote-stub.o : \
    321  remote-stub.c make.h config.h \
    322  getopt.h \
    323  gettext.h filedef.h \
    324  hash.h job.h \
    325  commands.h
    326 rule.o : \
    327  rule.c make.h config.h \
    328  getopt.h \
    329  gettext.h dep.h \
    330  filedef.h hash.h job.h \
    331  commands.h variable.h rule.h
    332 signame.o : \
    333  signame.c make.h config.h \
    334  getopt.h \
    335  gettext.h
    336 variable.o : \
    337  variable.c make.h config.h \
    338  getopt.h \
    339  gettext.h dep.h \
    340  filedef.h hash.h job.h \
    341  commands.h variable.h rule.h
    342 version.o : \
    343  version.c config.h
    344 vpath.o : \
    345  vpath.c make.h config.h \
    346  getopt.h \
    347  gettext.h filedef.h \
    348  hash.h variable.h
     330
     331# .deps/remote-stub.Po
     332remote-stub.o remote-stub.o: remote-stub.c make.h config.h \
     333  getopt.h \
     334  gettext.h filedef.h hash.h job.h \
     335  commands.h
     336
     337# .deps/rule.Po
     338rule.o rule.o: rule.c make.h config.h \
     339  getopt.h \
     340  gettext.h dep.h filedef.h hash.h job.h \
     341  commands.h variable.h \
     342  rule.h
     343
     344# .deps/signame.Po
     345signame.o signame.o: signame.c make.h config.h \
     346  getopt.h \
     347  gettext.h
     348
     349# .deps/strcache.Po
     350strcache.o strcache.o: strcache.c make.h config.h \
     351  getopt.h \
     352  gettext.h hash.h
     353
     354# .deps/variable.Po
     355variable.o variable.o: variable.c make.h config.h \
     356  getopt.h \
     357  gettext.h dep.h filedef.h \
     358  hash.h job.h commands.h \
     359  variable.h rule.h
     360
     361# .deps/version.Po
     362version.o version.o: version.c config.h
     363
     364# .deps/vmsjobs.Po
     365# dummy
     366
     367# .deps/vpath.Po
     368vpath.o vpath.o: vpath.c make.h config.h \
     369  getopt.h \
     370  gettext.h filedef.h hash.h variable.h
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette