blob: 3167be4a8894371283f91fe28a2101cacbd3cfc3 (
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
|
*** Makefile.orig Fri Apr 1 11:03:58 1994
--- Makefile Sun Aug 6 21:35:01 1995
***************
*** 1,25 ****
! BINDIR= /usr/local/bin
! ETCDIR= /usr/local/etc
! MANDIR= /usr/local/man
MANEXT= 8
all:
@ echo 'Use the "build" command (shell script) to make ftpd.'
@ echo 'You can say "build help" for details on how it works.'
install: bin/ftpd bin/ftpcount bin/ftpshut
-mv -f ${ETCDIR}/ftpd ${ETCDIR}/ftpd-old
@echo Installing binaries.
! install -o bin -g bin -m 755 bin/ftpd ${ETCDIR}/ftpd
! install -o bin -g bin -m 755 bin/ftpshut ${BINDIR}/ftpshut
! install -o bin -g bin -m 755 bin/ftpcount ${BINDIR}/ftpcount
! install -o bin -g bin -m 755 bin/ftpwho ${BINDIR}/ftpwho
@echo Installing manpages.
! install -o bin -g bin -m 755 doc/ftpd.8 ${MANDIR}/man8/ftpd.8
! install -o bin -g bin -m 755 doc/ftpcount.1 ${MANDIR}/man1/ftpcount.1
! install -o bin -g bin -m 755 doc/ftpwho.1 ${MANDIR}/man1/ftpwho.1
! install -o bin -g bin -m 755 doc/ftpshut.8 ${MANDIR}/man8/ftpshut.8
! install -o bin -g bin -m 755 doc/ftpaccess.5 ${MANDIR}/man5/ftpaccess.5
! install -o bin -g bin -m 755 doc/ftphosts.5 ${MANDIR}/man5/ftphosts.5
! install -o bin -g bin -m 755 doc/ftpconversions.5 ${MANDIR}/man5/ftpconversions.5
! install -o bin -g bin -m 755 doc/xferlog.5 ${MANDIR}/man5/xferlog.5
--- 1,36 ----
! BINDIR= ${PREFIX}/bin
! LIBEXECDIR= ${PREFIX}/libexec
! ETCDIR= ${PREFIX}/etc
! MANDIR= ${PREFIX}/man
MANEXT= 8
all:
+ /bin/sh build fb2
@ echo 'Use the "build" command (shell script) to make ftpd.'
@ echo 'You can say "build help" for details on how it works.'
install: bin/ftpd bin/ftpcount bin/ftpshut
-mv -f ${ETCDIR}/ftpd ${ETCDIR}/ftpd-old
@echo Installing binaries.
! install -c -o bin -g bin -m 755 bin/ftpd ${LIBEXECDIR}/ftpd
! install -c -o bin -g bin -m 755 bin/ftpshut ${BINDIR}/ftpshut
! install -c -o bin -g bin -m 755 bin/ftpcount ${BINDIR}/ftpcount
! install -c -o bin -g bin -m 755 bin/ftpwho ${BINDIR}/ftpwho
@echo Installing manpages.
! install -c -o bin -g bin -m 755 doc/ftpd.8 ${MANDIR}/man8/ftpd.8
! install -c -o bin -g bin -m 755 doc/ftpcount.1 ${MANDIR}/man1/ftpcount.1
! install -c -o bin -g bin -m 755 doc/ftpwho.1 ${MANDIR}/man1/ftpwho.1
! install -c -o bin -g bin -m 755 doc/ftpshut.8 ${MANDIR}/man8/ftpshut.8
! install -c -o bin -g bin -m 755 doc/ftpaccess.5 ${MANDIR}/man5/ftpaccess.5
! install -c -o bin -g bin -m 755 doc/ftphosts.5 ${MANDIR}/man5/ftphosts.5
! install -c -o bin -g bin -m 755 doc/ftpconversions.5 ${MANDIR}/man5/ftpconversions.5
! install -c -o bin -g bin -m 755 doc/xferlog.5 ${MANDIR}/man5/xferlog.5
! @echo Compressing manpages
! gzip -f -9 ${MANDIR}/man8/ftpd.8
! gzip -f -9 ${MANDIR}/man1/ftpcount.1
! gzip -f -9 ${MANDIR}/man1/ftpwho.1
! gzip -f -9 ${MANDIR}/man8/ftpshut.8
! gzip -f -9 ${MANDIR}/man5/ftpaccess.5
! gzip -f -9 ${MANDIR}/man5/ftphosts.5
! gzip -f -9 ${MANDIR}/man5/ftpconversions.5
! gzip -f -9 ${MANDIR}/man5/xferlog.5
|