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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
#
# Copyright (C) 1989-95 GROUPE BULL
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# Except as contained in this notice, the name of GROUPE BULL shall not be
# used in advertising or otherwise to promote the sale, use or other dealings
# in this Software without prior written authorization from GROUPE BULL.
#
#
# XPM Makefile - Arnaud LE HORS
#
# if your system doesn't provide strcasecmp add -DNEED_STRCASECMP
# if your system doesn't provide strdup add -DNEED_STRDUP
# if your system doesn't provide pipe add -DNO_ZPIPE
# if on your system sprintf doesn't return the number of bytes transmitted
# add -DVOID_SPRINTF
DEFINES =
# where the library will be installed
DESTLIBDIR=/usr/local/lib/X11
# where the include file (pxm.h) will be installed
DESTINCLUDEDIR=/usr/local/include/X11
CC = cc
AR = ar r
RANLIB = ranlib
RM = rm -f
# on sysV, define this as cp.
INSTALL = install -c
MKDIRHIER = mkdir
LN = ln -s
CDEBUGFLAGS= -O
OBJS= data.o create.o misc.o rgb.o scan.o parse.o hashtab.o \
WrFFrP.o RdFToP.o CrPFrDat.o CrDatFrP.o \
WrFFrI.o RdFToI.o CrIFrDat.o CrDatFrI.o \
CrIFrBuf.o CrPFrBuf.o CrBufFrI.o CrBufFrP.o \
RdFToDat.o WrFFrDat.o \
Attrib.o CrIFrP.o CrPFrI.o Image.o Info.o RdFToBuf.o WrFFrBuf.o
CFLAGS= $(CDEBUGFLAGS) $(DEFINES) $(INCLUDES)
all: ../X11/xpm.h libXpm.a
clean:
$(RM) *.o libXpm.a
libXpm.a: $(OBJS)
$(AR) libXpm.a $(OBJS)
$(RANLIB) libXpm.a
install:
$(INSTALL) -m 0664 libXpm.a $(DESTLIBDIR)
cd $(DESTLIBDIR); $(RANLIB) libXpm.a
-mkdir $(DESTINCLUDEDIR)
-chmod ugo+rx $(DESTINCLUDEDIR)
$(INSTALL) -m 0444 xpm.h $(DESTINCLUDEDIR)
../X11/xpm.h: xpm.h
@if [ -d ../X11 ]; then set +x; \
else (set -x; $(MKDIRHIER) ../X11); fi
$(RM) ../X11/xpm.h; \
$(LN) ../lib/xpm.h ../X11
# Other dependencies.
CrBufFrI.o: XpmI.h xpm.h
CrBufFrP.o: XpmI.h xpm.h
CrDatFI.o: XpmI.h xpm.h
CrDatFP.o: XpmI.h xpm.h
CrIFrBuf.o: XpmI.h xpm.h
CrIFrDat.o: XpmI.h xpm.h
CrPFrBuf.o: XpmI.h xpm.h
CrPFrDat.o: XpmI.h xpm.h
RdFToDat.o: XpmI.h xpm.h
RdFToI.o: XpmI.h xpm.h
RdFToP.o: XpmI.h xpm.h
WrFFrDat.o: XpmI.h xpm.h
WrFFrI.o: XpmI.h xpm.h
WrFFrP.o: XpmI.h xpm.h
create.o: XpmI.h xpm.h
data.o: XpmI.h xpm.h
hashtab.o: XpmI.h xpm.h
misc.o: XpmI.h xpm.h
parse.o: XpmI.h xpm.h
rgb.o: XpmI.h xpm.h
scan.o: XpmI.h xpm.h
Attrib.o: XpmI.h xpm.h
CrIFrP.o: XpmI.h xpm.h
CrPFrI.o: XpmI.h xpm.h
Image.o: XpmI.h xpm.h
Info.o: XpmI.h xpm.h
RdFToBuf.o: XpmI.h xpm.h
WrFFrBuf.o: XpmI.h xpm.h
|