summaryrefslogtreecommitdiff
path: root/Makefile.in
blob: 12c7654551d6c6381272c8a4461d792ca89d8485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
# NOTE: If you have no `make' program at all to process this makefile, run
# `build.sh' instead.
#
# Copyright (C) 1988,89,91,92,93,94,95,96 Free Software Foundation, Inc.
# This file is part of GNU Make.
#
# GNU Make is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# GNU Make is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Make; see the file COPYING.  If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.

#
#	Makefile for GNU Make
#

# Ultrix 2.2 make doesn't expand the value of VPATH.
VPATH = @srcdir@
# This must repeat the value, because configure will remove `VPATH = .'.
srcdir = @srcdir@

CC = @CC@

CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
LDFLAGS = @LDFLAGS@

# Define these for your system as follows:
#	-DNO_ARCHIVES		To disable `ar' archive support.
#	-DNO_FLOAT		To avoid using floating-point numbers.
#	-DENUM_BITFIELDS	If the compiler isn't GCC but groks enum foo:2.
#				Some compilers apparently accept this
#				without complaint but produce losing code,
#				so beware.
# NeXT 1.0a uses an old version of GCC, which required -D__inline=inline.
# See also `config.h'.
defines = @DEFS@ -DLIBDIR=\"$(libdir)\" -DINCLUDEDIR=\"$(includedir)\"

# Which flavor of remote job execution support to use.
# The code is found in `remote-$(REMOTE).c'.
REMOTE = @REMOTE@

# If your system doesn't have alloca, or the one provided is bad, define this.
ALLOCA = @ALLOCA@
ALLOCA_SRC = $(srcdir)/alloca.c

# If your system needs extra libraries loaded in, define them here.
# System V probably need -lPW for alloca.  HP-UX 7.0's alloca in
# libPW.a is broken on HP9000s300 and HP9000s400 machines.  Use
# alloca.c instead on those machines.
LOADLIBES = @LIBS@

# Any extra object files your system needs.
extras = @LIBOBJS@

# Common prefix for machine-independent installed files.
prefix = @prefix@
# Common prefix for machine-dependent installed files.
exec_prefix = @exec_prefix@

# Directory to install `make' in.
bindir = $(exec_prefix)/bin
# Directory to find libraries in for `-lXXX'.
libdir = $(exec_prefix)/lib
# Directory to search by default for included makefiles.
includedir = $(prefix)/include
# Directory to install the Info files in.
infodir = $(prefix)/info
# Directory to install the man page in.
mandir = $(prefix)/man/man$(manext)
# Number to put on the man page filename.
manext = 1
# Prefix to put on installed `make' binary file name.
binprefix =
# Prefix to put on installed `make' man page file name.
manprefix = $(binprefix)

# Whether or not make needs to be installed setgid.
# The value should be either `true' or `false'.
# On many systems, the getloadavg function (used to implement the `-l'
# switch) will not work unless make is installed setgid kmem.
install_setgid = @NEED_SETGID@
# Install make setgid to this group so it can read /dev/kmem.
group = @KMEM_GROUP@

# Program to install `make'.
INSTALL_PROGRAM = @INSTALL_PROGRAM@
# Program to install the man page.
INSTALL_DATA = @INSTALL_DATA@
# Generic install program.
INSTALL = @INSTALL@

# Program to format Texinfo source into Info files.
MAKEINFO = makeinfo
# Program to format Texinfo source into DVI files.
TEXI2DVI = texi2dvi

# Programs to make tags files.
ETAGS = etags -w
CTAGS = ctags -w

objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o	\
       rule.o implicit.o default.o variable.o expand.o function.o	\
       vpath.o version.o ar.o arscan.o signame.o remote-$(REMOTE).o	\
       getopt.o getopt1.o glob/libglob.a				\
       $(ALLOCA) $(extras)
srcs = $(srcdir)/commands.c $(srcdir)/job.c $(srcdir)/dir.c		\
       $(srcdir)/file.c $(srcdir)/getloadavg.c $(srcdir)/misc.c		\
       $(srcdir)/main.c $(srcdir)/read.c $(srcdir)/remake.c		\
       $(srcdir)/rule.c $(srcdir)/implicit.c $(srcdir)/default.c	\
       $(srcdir)/variable.c $(srcdir)/expand.c $(srcdir)/function.c	\
       $(srcdir)/vpath.c $(srcdir)/version.c				\
       $(srcdir)/remote-$(REMOTE).c					\
       $(srcdir)/ar.c $(srcdir)/arscan.c				\
       $(srcdir)/signame.c $(srcdir)/signame.h				\
       $(srcdir)/getopt.c $(srcdir)/getopt1.c $(srcdir)/getopt.h	\
       $(srcdir)/commands.h $(srcdir)/dep.h $(srcdir)/filedef.h		\
       $(srcdir)/job.h $(srcdir)/make.h $(srcdir)/rule.h		\
       $(srcdir)/variable.h $(ALLOCA_SRC) $(srcdir)/config.h.in


.SUFFIXES:
.SUFFIXES: .o .c .h .ps .dvi .info .texinfo

all: make
info: make.info
dvi: make.dvi
# Some makes apparently use .PHONY as the default goal if it is before `all'.
.PHONY: all check info dvi

make.info: make.texinfo
	$(MAKEINFO) -I$(srcdir) $(srcdir)/make.texinfo -o make.info

make.dvi: make.texinfo
	$(TEXI2DVI) $(srcdir)/make.texinfo

make.ps: make.dvi
	dvi2ps make.dvi > make.ps

make: $(objs)
	$(CC) $(LDFLAGS) $(objs) $(LOADLIBES) -o make.new
	mv -f make.new make

# -I. is needed to find config.h in the build directory.
.c.o:
	$(CC) $(defines) -c -I. -I$(srcdir) -I$(srcdir)/glob \
	      $(CPPFLAGS) $(CFLAGS) $< $(OUTPUT_OPTION)

# For some losing Unix makes.
SHELL = /bin/sh
@SET_MAKE@

glob/libglob.a: FORCE config.h
	cd glob; $(MAKE) libglob.a
FORCE:

tagsrcs = $(srcs) $(srcdir)/remote-*.c
TAGS: $(tagsrcs)
	$(ETAGS) $(tagsrcs)
tags: $(tagsrcs)
	$(CTAGS) $(tagsrcs)

.PHONY: install installdirs
install: installdirs \
	 $(bindir)/$(binprefix)make $(infodir)/make.info \
	 $(mandir)/$(manprefix)make.$(manext)

installdirs:
	$(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(mandir)

$(bindir)/$(binprefix)make: make
	$(INSTALL_PROGRAM) make $@.new
	@if $(install_setgid); then \
	   if chgrp $(group) $@.new && chmod g+s $@.new; then \
	     echo "chgrp $(group) $@.new && chmod g+s $@.new"; \
	   else \
	     echo "$@ needs to be owned by group $(group) and setgid;"; \
	     echo "otherwise the \`-l' option will probably not work."; \
	     echo "You may need special privileges to install $@."; \
	   fi; \
	 else true; fi
# Some systems can't deal with renaming onto a running binary.
	-rm -f $@.old
	-mv $@ $@.old
	mv $@.new $@

$(infodir)/make.info: make.info
	if [ -r ./make.info ]; then dir=.; else dir=$(srcdir); fi; \
	for file in $${dir}/make.info*; do \
	  name="`basename $$file`"; \
	  $(INSTALL_DATA) $$file \
	    `echo $@ | sed "s,make.info\$$,$$name,"`; \
	done
# Run install-info only if it exists.
# Use `if' instead of just prepending `-' to the
# line so we notice real errors from install-info.
# We use `$(SHELL) -c' because some shells do not
# fail gracefully when there is an unknown command.
	if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
	  if [ -r ./make.info ]; then dir=.; else dir=$(srcdir); fi; \
	  install-info --info-dir=$(infodir) $$dir/make.info; \
	else true; fi

$(mandir)/$(manprefix)make.$(manext): make.man
	$(INSTALL_DATA) $(srcdir)/make.man $@


loadavg: loadavg.c config.h
	$(CC) $(defines) -DTEST -I. -I$(srcdir) $(CFLAGS) $(LDFLAGS) \
	      loadavg.c $(LOADLIBES) -o $@
# We copy getloadavg.c into a different file rather than compiling it
# directly because some compilers clobber getloadavg.o in the process.
loadavg.c: getloadavg.c
	ln $(srcdir)/getloadavg.c loadavg.c || \
	cp $(srcdir)/getloadavg.c loadavg.c
check-loadavg: loadavg
	@echo The system uptime program believes the load average to be:
	-uptime
	@echo The GNU load average checking code believes:
	./loadavg
check: check-loadavg


.PHONY: clean realclean distclean mostlyclean
clean: glob-clean
	-rm -f make loadavg *.o core make.dvi
distclean: clean glob-realclean
	-rm -f Makefile config.h config.status build.sh stamp-config
	-rm -f config.log config.cache
	-rm -f TAGS tags
	-rm -f make.?? make.??s make.log make.toc make.*aux
	-rm -f loadavg.c
realclean: distclean
	-rm -f make.info*
mostlyclean: clean

.PHONY: glob-clean glob-realclean
glob-clean glob-realclean:
	cd glob; $(MAKE) $@

Makefile: config.status $(srcdir)/Makefile.in
	$(SHELL) config.status
glob/Makefile: config.status $(srcdir)/glob/Makefile.in
	$(SHELL) config.status
config.h: stamp-config ;
stamp-config: config.status $(srcdir)/config.h.in
	$(SHELL) config.status
	touch stamp-config

#configure: configure.in aclocal.m4
#	cd $(srcdir) && autoconf $(ACFLAGS)
#config.h.in: configure.in aclocal.m4
#	cd $(srcdir) && autoheader $(ACFLAGS)

# This tells versions [3.59,3.63) of GNU make not to export all variables.
.NOEXPORT:

# The automatically generated dependencies below may omit config.h
# because it is included with ``#include <config.h>'' rather than
# ``#include "config.h"''.  So we add the explicit dependency to make sure.
$(objs): config.h

# Automatically generated dependencies will be put at the end of the file.

# Automatically generated dependencies.
commands.o: commands.c
commands.o: ./make.h
commands.o: /usr/include/sys/types.h
commands.o: /usr/include/sys/stdtypes.h
commands.o: /usr/include/sys/sysmacros.h
commands.o: /usr/include/sys/stat.h
commands.o: /usr/include/sys/types.h
commands.o: /usr/include/signal.h
commands.o: /usr/include/sys/signal.h
commands.o: /usr/include/vm/faultcode.h
commands.o: /usr/include/sys/stdtypes.h
commands.o: /usr/include/stdio.h
commands.o: /usr/include/ctype.h
commands.o: /usr/include/time.h
commands.o: /usr/include/sys/stdtypes.h
commands.o: /usr/include/errno.h
commands.o: /usr/include/sys/errno.h
commands.o: ./signame.h
commands.o: /usr/include/strings.h
commands.o: ./dep.h
commands.o: ./filedef.h
commands.o: ./variable.h
commands.o: ./job.h
commands.o: ./commands.h
job.o: job.c
job.o: ./make.h
job.o: /usr/include/sys/types.h
job.o: /usr/include/sys/stdtypes.h
job.o: /usr/include/sys/sysmacros.h
job.o: /usr/include/sys/stat.h
job.o: /usr/include/sys/types.h
job.o: /usr/include/signal.h
job.o: /usr/include/sys/signal.h
job.o: /usr/include/vm/faultcode.h
job.o: /usr/include/sys/stdtypes.h
job.o: /usr/include/stdio.h
job.o: /usr/include/ctype.h
job.o: /usr/include/time.h
job.o: /usr/include/sys/stdtypes.h
job.o: /usr/include/errno.h
job.o: /usr/include/sys/errno.h
job.o: ./signame.h
job.o: /usr/include/strings.h
job.o: ./job.h
job.o: ./filedef.h
job.o: ./commands.h
job.o: ./variable.h
job.o: /usr/include/assert.h
job.o: /usr/include/sys/file.h
job.o: /usr/include/sys/types.h
job.o: /usr/include/sys/fcntlcom.h
job.o: /usr/include/sys/stdtypes.h
job.o: /usr/include/sys/stat.h
dir.o: dir.c
dir.o: ./make.h
dir.o: /usr/include/sys/types.h
dir.o: /usr/include/sys/stdtypes.h
dir.o: /usr/include/sys/sysmacros.h
dir.o: /usr/include/sys/stat.h
dir.o: /usr/include/sys/types.h
dir.o: /usr/include/signal.h
dir.o: /usr/include/sys/signal.h
dir.o: /usr/include/vm/faultcode.h
dir.o: /usr/include/sys/stdtypes.h
dir.o: /usr/include/stdio.h
dir.o: /usr/include/ctype.h
dir.o: /usr/include/time.h
dir.o: /usr/include/sys/stdtypes.h
dir.o: /usr/include/errno.h
dir.o: /usr/include/sys/errno.h
dir.o: ./signame.h
dir.o: /usr/include/strings.h
file.o: file.c
file.o: ./make.h
file.o: /usr/include/sys/types.h
file.o: /usr/include/sys/stdtypes.h
file.o: /usr/include/sys/sysmacros.h
file.o: /usr/include/sys/stat.h
file.o: /usr/include/sys/types.h
file.o: /usr/include/signal.h
file.o: /usr/include/sys/signal.h
file.o: /usr/include/vm/faultcode.h
file.o: /usr/include/sys/stdtypes.h
file.o: /usr/include/stdio.h
file.o: /usr/include/ctype.h
file.o: /usr/include/time.h
file.o: /usr/include/sys/stdtypes.h
file.o: /usr/include/errno.h
file.o: /usr/include/sys/errno.h
file.o: ./signame.h
file.o: /usr/include/strings.h
file.o: ./dep.h
file.o: ./filedef.h
file.o: ./job.h
file.o: ./commands.h
file.o: ./variable.h
file.o: /usr/include/assert.h
misc.o: misc.c
misc.o: ./make.h
misc.o: /usr/include/sys/types.h
misc.o: /usr/include/sys/stdtypes.h
misc.o: /usr/include/sys/sysmacros.h
misc.o: /usr/include/sys/stat.h
misc.o: /usr/include/sys/types.h
misc.o: /usr/include/signal.h
misc.o: /usr/include/sys/signal.h
misc.o: /usr/include/vm/faultcode.h
misc.o: /usr/include/sys/stdtypes.h
misc.o: /usr/include/stdio.h
misc.o: /usr/include/ctype.h
misc.o: /usr/include/time.h
misc.o: /usr/include/sys/stdtypes.h
misc.o: /usr/include/errno.h
misc.o: /usr/include/sys/errno.h
misc.o: ./signame.h
misc.o: /usr/include/strings.h
misc.o: ./dep.h
main.o: main.c
main.o: ./make.h
main.o: /usr/include/sys/types.h
main.o: /usr/include/sys/stdtypes.h
main.o: /usr/include/sys/sysmacros.h
main.o: /usr/include/sys/stat.h
main.o: /usr/include/sys/types.h
main.o: /usr/include/signal.h
main.o: /usr/include/sys/signal.h
main.o: /usr/include/vm/faultcode.h
main.o: /usr/include/sys/stdtypes.h
main.o: /usr/include/stdio.h
main.o: /usr/include/ctype.h
main.o: /usr/include/time.h
main.o: /usr/include/sys/stdtypes.h
main.o: /usr/include/errno.h
main.o: /usr/include/sys/errno.h
main.o: ./signame.h
main.o: /usr/include/strings.h
main.o: ./dep.h
main.o: ./filedef.h
main.o: ./variable.h
main.o: ./job.h
main.o: ./commands.h
main.o: ./getopt.h
main.o: /usr/include/assert.h
read.o: read.c
read.o: ./make.h
read.o: /usr/include/sys/types.h
read.o: /usr/include/sys/stdtypes.h
read.o: /usr/include/sys/sysmacros.h
read.o: /usr/include/sys/stat.h
read.o: /usr/include/sys/types.h
read.o: /usr/include/signal.h
read.o: /usr/include/sys/signal.h
read.o: /usr/include/vm/faultcode.h
read.o: /usr/include/sys/stdtypes.h
read.o: /usr/include/stdio.h
read.o: /usr/include/ctype.h
read.o: /usr/include/time.h
read.o: /usr/include/sys/stdtypes.h
read.o: /usr/include/errno.h
read.o: /usr/include/sys/errno.h
read.o: ./signame.h
read.o: /usr/include/strings.h
read.o: ./dep.h
read.o: ./filedef.h
read.o: ./job.h
read.o: ./commands.h
read.o: ./variable.h
read.o: ./glob/glob.h
read.o: /usr/include/pwd.h
read.o: /usr/include/sys/types.h
remake.o: remake.c
remake.o: ./make.h
remake.o: /usr/include/sys/types.h
remake.o: /usr/include/sys/stdtypes.h
remake.o: /usr/include/sys/sysmacros.h
remake.o: /usr/include/sys/stat.h
remake.o: /usr/include/sys/types.h
remake.o: /usr/include/signal.h
remake.o: /usr/include/sys/signal.h
remake.o: /usr/include/vm/faultcode.h
remake.o: /usr/include/sys/stdtypes.h
remake.o: /usr/include/stdio.h
remake.o: /usr/include/ctype.h
remake.o: /usr/include/time.h
remake.o: /usr/include/sys/stdtypes.h
remake.o: /usr/include/errno.h
remake.o: /usr/include/sys/errno.h
remake.o: ./signame.h
remake.o: /usr/include/strings.h
remake.o: ./filedef.h
remake.o: ./job.h
remake.o: ./commands.h
remake.o: ./dep.h
remake.o: /usr/include/assert.h
remake.o: /usr/include/sys/file.h
remake.o: /usr/include/sys/types.h
remake.o: /usr/include/sys/fcntlcom.h
remake.o: /usr/include/sys/stdtypes.h
remake.o: /usr/include/sys/stat.h
rule.o: rule.c
rule.o: ./make.h
rule.o: /usr/include/sys/types.h
rule.o: /usr/include/sys/stdtypes.h
rule.o: /usr/include/sys/sysmacros.h
rule.o: /usr/include/sys/stat.h
rule.o: /usr/include/sys/types.h
rule.o: /usr/include/signal.h
rule.o: /usr/include/sys/signal.h
rule.o: /usr/include/vm/faultcode.h
rule.o: /usr/include/sys/stdtypes.h
rule.o: /usr/include/stdio.h
rule.o: /usr/include/ctype.h
rule.o: /usr/include/time.h
rule.o: /usr/include/sys/stdtypes.h
rule.o: /usr/include/errno.h
rule.o: /usr/include/sys/errno.h
rule.o: ./signame.h
rule.o: /usr/include/strings.h
rule.o: ./dep.h
rule.o: ./filedef.h
rule.o: ./job.h
rule.o: ./commands.h
rule.o: ./variable.h
rule.o: ./rule.h
implicit.o: implicit.c
implicit.o: ./make.h
implicit.o: /usr/include/sys/types.h
implicit.o: /usr/include/sys/stdtypes.h
implicit.o: /usr/include/sys/sysmacros.h
implicit.o: /usr/include/sys/stat.h
implicit.o: /usr/include/sys/types.h
implicit.o: /usr/include/signal.h
implicit.o: /usr/include/sys/signal.h
implicit.o: /usr/include/vm/faultcode.h
implicit.o: /usr/include/sys/stdtypes.h
implicit.o: /usr/include/stdio.h
implicit.o: /usr/include/ctype.h
implicit.o: /usr/include/time.h
implicit.o: /usr/include/sys/stdtypes.h
implicit.o: /usr/include/errno.h
implicit.o: /usr/include/sys/errno.h
implicit.o: ./signame.h
implicit.o: /usr/include/strings.h
implicit.o: ./rule.h
implicit.o: ./dep.h
implicit.o: ./filedef.h
default.o: default.c
default.o: ./make.h
default.o: /usr/include/sys/types.h
default.o: /usr/include/sys/stdtypes.h
default.o: /usr/include/sys/sysmacros.h
default.o: /usr/include/sys/stat.h
default.o: /usr/include/sys/types.h
default.o: /usr/include/signal.h
default.o: /usr/include/sys/signal.h
default.o: /usr/include/vm/faultcode.h
default.o: /usr/include/sys/stdtypes.h
default.o: /usr/include/stdio.h
default.o: /usr/include/ctype.h
default.o: /usr/include/time.h
default.o: /usr/include/sys/stdtypes.h
default.o: /usr/include/errno.h
default.o: /usr/include/sys/errno.h
default.o: ./signame.h
default.o: /usr/include/strings.h
default.o: ./rule.h
default.o: ./dep.h
default.o: ./filedef.h
default.o: ./job.h
default.o: ./commands.h
default.o: ./variable.h
variable.o: variable.c
variable.o: ./make.h
variable.o: /usr/include/sys/types.h
variable.o: /usr/include/sys/stdtypes.h
variable.o: /usr/include/sys/sysmacros.h
variable.o: /usr/include/sys/stat.h
variable.o: /usr/include/sys/types.h
variable.o: /usr/include/signal.h
variable.o: /usr/include/sys/signal.h
variable.o: /usr/include/vm/faultcode.h
variable.o: /usr/include/sys/stdtypes.h
variable.o: /usr/include/stdio.h
variable.o: /usr/include/ctype.h
variable.o: /usr/include/time.h
variable.o: /usr/include/sys/stdtypes.h
variable.o: /usr/include/errno.h
variable.o: /usr/include/sys/errno.h
variable.o: ./signame.h
variable.o: /usr/include/strings.h
variable.o: ./dep.h
variable.o: ./filedef.h
variable.o: ./job.h
variable.o: ./commands.h
variable.o: ./variable.h
expand.o: expand.c
expand.o: ./make.h
expand.o: /usr/include/sys/types.h
expand.o: /usr/include/sys/stdtypes.h
expand.o: /usr/include/sys/sysmacros.h
expand.o: /usr/include/sys/stat.h
expand.o: /usr/include/sys/types.h
expand.o: /usr/include/signal.h
expand.o: /usr/include/sys/signal.h
expand.o: /usr/include/vm/faultcode.h
expand.o: /usr/include/sys/stdtypes.h
expand.o: /usr/include/stdio.h
expand.o: /usr/include/ctype.h
expand.o: /usr/include/time.h
expand.o: /usr/include/sys/stdtypes.h
expand.o: /usr/include/errno.h
expand.o: /usr/include/sys/errno.h
expand.o: ./signame.h
expand.o: /usr/include/strings.h
expand.o: ./filedef.h
expand.o: ./job.h
expand.o: ./commands.h
expand.o: ./variable.h
function.o: function.c
function.o: ./make.h
function.o: /usr/include/sys/types.h
function.o: /usr/include/sys/stdtypes.h
function.o: /usr/include/sys/sysmacros.h
function.o: /usr/include/sys/stat.h
function.o: /usr/include/sys/types.h
function.o: /usr/include/signal.h
function.o: /usr/include/sys/signal.h
function.o: /usr/include/vm/faultcode.h
function.o: /usr/include/sys/stdtypes.h
function.o: /usr/include/stdio.h
function.o: /usr/include/ctype.h
function.o: /usr/include/time.h
function.o: /usr/include/sys/stdtypes.h
function.o: /usr/include/errno.h
function.o: /usr/include/sys/errno.h
function.o: ./signame.h
function.o: /usr/include/strings.h
function.o: ./filedef.h
function.o: ./variable.h
function.o: ./dep.h
function.o: ./job.h
function.o: ./commands.h
vpath.o: vpath.c
vpath.o: ./make.h
vpath.o: /usr/include/sys/types.h
vpath.o: /usr/include/sys/stdtypes.h
vpath.o: /usr/include/sys/sysmacros.h
vpath.o: /usr/include/sys/stat.h
vpath.o: /usr/include/sys/types.h
vpath.o: /usr/include/signal.h
vpath.o: /usr/include/sys/signal.h
vpath.o: /usr/include/vm/faultcode.h
vpath.o: /usr/include/sys/stdtypes.h
vpath.o: /usr/include/stdio.h
vpath.o: /usr/include/ctype.h
vpath.o: /usr/include/time.h
vpath.o: /usr/include/sys/stdtypes.h
vpath.o: /usr/include/errno.h
vpath.o: /usr/include/sys/errno.h
vpath.o: ./signame.h
vpath.o: /usr/include/strings.h
vpath.o: ./filedef.h
vpath.o: ./variable.h
version.o: version.c
ar.o: ar.c
ar.o: ./make.h
ar.o: /usr/include/sys/types.h
ar.o: /usr/include/sys/stdtypes.h
ar.o: /usr/include/sys/sysmacros.h
ar.o: /usr/include/sys/stat.h
ar.o: /usr/include/sys/types.h
ar.o: /usr/include/signal.h
ar.o: /usr/include/sys/signal.h
ar.o: /usr/include/vm/faultcode.h
ar.o: /usr/include/sys/stdtypes.h
ar.o: /usr/include/stdio.h
ar.o: /usr/include/ctype.h
ar.o: /usr/include/time.h
ar.o: /usr/include/sys/stdtypes.h
ar.o: /usr/include/errno.h
ar.o: /usr/include/sys/errno.h
ar.o: ./signame.h
ar.o: /usr/include/strings.h
ar.o: ./filedef.h
ar.o: ./dep.h
arscan.o: arscan.c
arscan.o: ./make.h
arscan.o: /usr/include/sys/types.h
arscan.o: /usr/include/sys/stdtypes.h
arscan.o: /usr/include/sys/sysmacros.h
arscan.o: /usr/include/sys/stat.h
arscan.o: /usr/include/sys/types.h
arscan.o: /usr/include/signal.h
arscan.o: /usr/include/sys/signal.h
arscan.o: /usr/include/vm/faultcode.h
arscan.o: /usr/include/sys/stdtypes.h
arscan.o: /usr/include/stdio.h
arscan.o: /usr/include/ctype.h
arscan.o: /usr/include/time.h
arscan.o: /usr/include/sys/stdtypes.h
arscan.o: /usr/include/errno.h
arscan.o: /usr/include/sys/errno.h
arscan.o: ./signame.h
arscan.o: /usr/include/strings.h
arscan.o: /usr/include/sys/file.h
arscan.o: /usr/include/sys/types.h
arscan.o: /usr/include/sys/fcntlcom.h
arscan.o: /usr/include/sys/stdtypes.h
arscan.o: /usr/include/sys/stat.h
arscan.o: /usr/include/ar.h
signame.o: signame.c
signame.o: /usr/include/stdio.h
signame.o: /usr/include/sys/types.h
signame.o: /usr/include/sys/stdtypes.h
signame.o: /usr/include/sys/sysmacros.h
signame.o: /usr/include/signal.h
signame.o: /usr/include/sys/signal.h
signame.o: /usr/include/vm/faultcode.h
signame.o: /usr/include/sys/stdtypes.h
signame.o: ./signame.h
remote-stub.o: remote-stub.c
remote-stub.o: ./make.h
remote-stub.o: /usr/include/sys/types.h
remote-stub.o: /usr/include/sys/stdtypes.h
remote-stub.o: /usr/include/sys/sysmacros.h
remote-stub.o: /usr/include/sys/stat.h
remote-stub.o: /usr/include/sys/types.h
remote-stub.o: /usr/include/signal.h
remote-stub.o: /usr/include/sys/signal.h
remote-stub.o: /usr/include/vm/faultcode.h
remote-stub.o: /usr/include/sys/stdtypes.h
remote-stub.o: /usr/include/stdio.h
remote-stub.o: /usr/include/ctype.h
remote-stub.o: /usr/include/time.h
remote-stub.o: /usr/include/sys/stdtypes.h
remote-stub.o: /usr/include/errno.h
remote-stub.o: /usr/include/sys/errno.h
remote-stub.o: ./signame.h
remote-stub.o: /usr/include/strings.h
remote-stub.o: ./filedef.h
remote-stub.o: ./job.h
remote-stub.o: ./commands.h
getopt.o: getopt.c
getopt.o: /usr/include/stdio.h
getopt.o: ./getopt.h
getopt1.o: getopt1.c
getopt1.o: ./getopt.h
getopt1.o: /usr/include/stdio.h
getloadavg.o: getloadavg.c
getloadavg.o: /usr/include/sys/types.h
getloadavg.o: /usr/include/sys/stdtypes.h
getloadavg.o: /usr/include/sys/sysmacros.h
getloadavg.o: /usr/include/sys/param.h
getloadavg.o: /usr/include/machine/param.h
getloadavg.o: /usr/include/machine/devaddr.h
getloadavg.o: /usr/include/sys/signal.h
getloadavg.o: /usr/include/vm/faultcode.h
getloadavg.o: /usr/include/sys/stdtypes.h
getloadavg.o: /usr/include/sys/types.h
getloadavg.o: /usr/include/errno.h
getloadavg.o: /usr/include/sys/errno.h
getloadavg.o: /usr/include/stdio.h
getloadavg.o: /usr/include/nlist.h
getloadavg.o: /usr/include/sys/file.h
getloadavg.o: /usr/include/sys/types.h
getloadavg.o: /usr/include/sys/fcntlcom.h
getloadavg.o: /usr/include/sys/stdtypes.h
getloadavg.o: /usr/include/sys/stat.h
getloadavg.o: /usr/include/sys/types.h