-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
67 lines (49 loc) · 1.88 KB
/
Makefile
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
### NCSA HTTPd 1.5
## Top level Makefile
all:
@echo Please choose a system type.
@echo Valid types are aix3, aix4, sunos, sgi4, sgi5,
@echo hp-cc, hp-gcc, solaris, netbsd, svr4, linux,
@echo next, ultrix, osf1, aux, bsdi, sco5
@echo If you do not have one of these systems, you must edit
@echo src/Makefile, src/portability.h, src/config.h,
@echo cgi-src/Makefile, and support/Makefile
clean:
(cd src ; make clean)
(cd cgi-src ; make clean)
(cd support ; make clean)
rm -f httpd
aix3:
cd src ; make aix3 ; cd ../cgi-src ; make aix3 ; cd ../support ; make aix3
aix4:
cd src ; make aix4 ; cd ../cgi-src ; make aix4 ; cd ../support ; make aix4
aux:
cd src ; make aux ; cd ../cgi-src ; make aux ; cd ../support ; make aux
bsdi:
cd src ; make ; cd ../cgi-src ; make ; cd ../support ; make
hp-cc:
cd src ; make hp-cc ; cd ../cgi-src ; make hp-cc ; cd ../support ; make hp-cc
hp-gcc:
cd src ; make hp-gcc ; cd ../cgi-src ; make hp-gcc ; cd ../support ; make hp-gcc
linux:
cd src ; make linux ; cd ../cgi-src ; make linux ; cd ../support ; make linux
netbsd:
cd src ; make netbsd ; cd ../cgi-src ; make netbsd ; cd ../support ; make netbsd
next:
cd src ; make next ; cd ../cgi-src ; make next; cd ../support ; make next
osf1:
cd src ; make osf1; cd ../cgi-src ; make osf1; cd ../support ; make osf1
sco5:
cd src ; make sco5; cd ../cgi-src ; make CC=icc ; cd ../support ; make sco5
sgi4:
cd src ; make sgi; cd ../cgi-src ; make sgi ; cd ../support ; make sgi4
sgi5:
cd src ; make sgi; cd ../cgi-src ; make sgi ; cd ../support ; make sgi5
solaris:
cd src ; make solaris ; cd ../cgi-src ; make solaris ; cd ../support ; make solaris
sunos:
cd src ; make sunos ; cd ../cgi-src ; make sunos ; cd ../support ; make sunos
svr4:
cd src ; make svr4 ; cd ../cgi-src ; make svr4 ; cd ../support ; make svr4
ultrix:
cd src ; make ultrix; cd ../cgi-src ; make ultrix; cd ../support ; make ultrix