blob: 334a5a4afbd62410ce920f7873cc4a5c2d735841 (
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
|
# Make WWW under unix for rs6000 with no gcc
#
# For W3 distribution, machine type for subdirectories
WWW_MACH = rs6000
# For ASIS
ASIS_MACH = ibm-rs6000/aix-3.2
# Directory for installed binary:
BINDIR = /usr/local/bin
# The AIX compiler does not define unix... AIX will do it and avoid realloc bug
CFLAGS = -O -DDEBUG
CC = cc
LFLAGS =
#_________________ OK if normal W3 distribution
# Where is the WWW source root?
WWW = ../..
# Where should temporary (object) files go?
WTMP = $(WWW)
# Where is the W3 object library?
LIBDIR = /usr/local/lib
include $(WWW)/Library/Implementation/CommonMakefile
|