blob: 4d825d299ac36c9e0625891b357c9b292323d586 (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
*** Makefile.orig Thu Jun 3 11:30:50 1993
--- Makefile Tue Feb 17 14:37:50 1998
***************
*** 63,94 ****
#
################################################################
! INSTALL= ln
! BIN= /usr/mlm/bin/
! MAN= /usr/mlm/man/
! FTP= /usr/mlm/ftp/
! TIFINC= ../tiff/libtiff/
! TIFLIB= ../tiff/libtiff/
MANEXT= l
# Make the C compiler behave on the NeXT
! DBG= -g -D__STRICT_BSD__
#----------------JPEG linkage----------------
# If you don't have the JPEG library, use these two lines
! #JPEG=
! #JLIB=
# If you have the JPEG library, use the next lines instead
! JPEG= -DDO_JPEG -I../jpeg
! JLIB= -L../jpeg -ljpeg
#----------------Utah RLE linkage----------------
# If you don't have the Utah RLE library, use these two lines
RLE=
RLIB=
# If you have the Utah RLE library, use the next lines instead
! #RLE= -DRLE -I/usr/mlm/include
! #RLIB= -L. -lfbm -L/usr/mlm/lib -lrle
LIB= -L. -lfbm $(JLIB) $(RLIB)
--- 63,94 ----
#
################################################################
! INSTALL= install
! BIN= $(PREFIX)/bin/
MANEXT= l
+ MAN= $(PREFIX)/man/man$(MANEXT)/
+ FTP= /usr/mlm/ftp/
+ TIFINC= $(LOCALBASE)/include/
+ TIFLIB= $(LOCALBASE)/lib/
# Make the C compiler behave on the NeXT
! # DBG= -g -D__STRICT_BSD__
#----------------JPEG linkage----------------
# If you don't have the JPEG library, use these two lines
! JPEG=
! JLIB=
# If you have the JPEG library, use the next lines instead
! #JPEG= -DDO_JPEG -I$(LOCALBASE)/include
! #JLIB= -L$(LOCALBASE)/lib -ljpeg
#----------------Utah RLE linkage----------------
# If you don't have the Utah RLE library, use these two lines
RLE=
RLIB=
# If you have the Utah RLE library, use the next lines instead
! #RLE= -DRLE -I$(LOCALBASE)/include
! #RLIB= -L. -lfbm -L$(LOCALBASE)/lib -lrle
LIB= -L. -lfbm $(JLIB) $(RLIB)
|