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
|
*** unix-gcc.mak.orig Thu Apr 9 18:16:54 1908
--- unix-gcc.mak Thu Apr 9 18:35:45 1908
***************
*** 82,95 ****
# specific stuff that <math.h> typically needs; nevertheless, we expect
# gcc to accept ANSI-style function prototypes and function definitions.
! CFLAGS=-g -O $(XCFLAGS) -DCOMPFONT -DWMODE -DKANJI
# Define platform flags for ld.
# SunOS and some others want -X; Ultrix wants -x.
# SunOS 4.n may need -Bstatic.
# XLDFLAGS can be set from the command line.
! LDFLAGS=$(XLDFLAGS)
# Define any extra libraries to link into the executable.
# ISC Unix 2.2 wants -linet.
--- 82,96 ----
# specific stuff that <math.h> typically needs; nevertheless, we expect
# gcc to accept ANSI-style function prototypes and function definitions.
! CFLAGS+= $(XCFLAGS) -DCOMPFONT -DWMODE -DKANJI -D_POSIX_SOURCE \
! -D_HAVE_PARAM_H -I/usr/local/include
# Define platform flags for ld.
# SunOS and some others want -X; Ultrix wants -x.
# SunOS 4.n may need -Bstatic.
# XLDFLAGS can be set from the command line.
! LDFLAGS=$(XLDFLAGS) -L/usr/local/lib
# Define any extra libraries to link into the executable.
# ISC Unix 2.2 wants -linet.
***************
*** 104,122 ****
# Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
# not in $(XINCLUDE).
! XINCLUDE=-I/usr/local/X/include
# Define the directory/ies for the X11 library files.
# This can be null if these files are in the default linker search path.
! XLIBDIRS=-L/usr/local/X/lib
# ------ Devices and features ------ #
# Choose the language feature(s) to include. See gs.mak for details.
FEATURE_DEVS=filter.dev dps.dev level2.dev kanji.dev \
! kfpcf.dev kfsnf.dev kfzeit.dev kfztbez.dev kfjtex.dev
# Choose the device(s) to include. See devs.mak for details.
--- 105,124 ----
# Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
# not in $(XINCLUDE).
! XINCLUDE=-I/usr/X11R6/include
# Define the directory/ies for the X11 library files.
# This can be null if these files are in the default linker search path.
! XLIBDIRS=-L/usr/X11R6/lib
# ------ Devices and features ------ #
# Choose the language feature(s) to include. See gs.mak for details.
FEATURE_DEVS=filter.dev dps.dev level2.dev kanji.dev \
! kfpcf.dev kfsnf.dev kfzeit.dev kfztbez.dev kfjtex.dev \
! kfvflib.dev
# Choose the device(s) to include. See devs.mak for details.
***************
*** 1552,1558 ****
# E.g,. to make A4 paper the default, change the second line below this to
# $(CCC) -DA4 gdevdjet.c
gdevcdj.$(OBJ): gdevcdj.c $(PDEVH) $(gdevpcl_h)
! $(CCC) gdevcdj.c
djet500c_=gdevdjtc.$(OBJ) $(HPPCL)
djet500c.dev: $(djet500c_)
--- 1554,1560 ----
# E.g,. to make A4 paper the default, change the second line below this to
# $(CCC) -DA4 gdevdjet.c
gdevcdj.$(OBJ): gdevcdj.c $(PDEVH) $(gdevpcl_h)
! $(CCC) -DA4 gdevcdj.c
djet500c_=gdevdjtc.$(OBJ) $(HPPCL)
djet500c.dev: $(djet500c_)
|