blob: eceebb4ea2cb9b9220982bf33c49684d2e3198b0 (
plain) (
blame)
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
|
*** Makefile.in.orig Wed Apr 5 08:41:26 1995
--- Makefile.in Sat Apr 8 17:49:22 1995
***************
*** 92,98 ****
# 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)
--- 92,98 ----
# Number to put on the man page filename.
manext = 1
# Prefix to put on installed `make' binary file name.
! binprefix = g
# Prefix to put on installed `make' man page file name.
manprefix = $(binprefix)
***************
*** 186,191 ****
--- 186,193 ----
installdirs:
$(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(mandir)
+ rm -f $(bindir)/$(binprefix)make $(infodir)/make.info \
+ $(mandir)/$(manprefix)make.$(manext)
$(bindir)/$(binprefix)make: make
$(INSTALL_PROGRAM) make $@.new
***************
*** 260,266 ****
$(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
--- 262,269 ----
$(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
|