1 |
|
|
2 |
# Makefile.in for PCRE (Perl-Compatible Regular Expression) library. |
# Makefile.in for PCRE (Perl-Compatible Regular Expression) library. |
3 |
|
|
|
#---------------------------------------------------------------------------# |
|
|
# MinGW DLLs are built automatically with this configure.in and Makefile.in # |
|
|
# as long you are using autoconf 2.50 or higher. The Win32 static libraries # |
|
|
# have not been tested, but appear to be generated. This functionality is # |
|
|
# by courtesy of Fred Cox. I (Philip Hazel) don't know anything about it, # |
|
|
# as I live entirely in a non-Windows world. # |
|
|
#---------------------------------------------------------------------------# |
|
|
|
|
4 |
|
|
5 |
############################################################################# |
############################################################################# |
6 |
|
|
7 |
# PCRE is developed on a Unix system. I do not use Windows or Macs, and know |
# PCRE is developed on a Unix system. I do not use Windows or Macs, and know |
8 |
# nothing about building software on them. Although the code of PCRE should |
# nothing about building software on them. Although the code of PCRE should |
9 |
# be very portable, the building system in this Makefile is designed for Unix |
# be very portable, the building system in this Makefile is designed for Unix |
10 |
# systems, with the exception of the mingw32 stuff just mentioned. |
# systems. However, there are features that have been supplied to me by various |
11 |
|
# people that should make it work on MinGW and Cygwin systems. |
12 |
|
|
13 |
# This setting enables Unix-style directory scanning in pcregrep, triggered |
# This setting enables Unix-style directory scanning in pcregrep, triggered |
14 |
# by the -f option. Maybe one day someone will add code for other systems. |
# by the -f option. Maybe one day someone will add code for other systems. |
47 |
INCDIR = @includedir@ |
INCDIR = @includedir@ |
48 |
MANDIR = @mandir@ |
MANDIR = @mandir@ |
49 |
|
|
50 |
|
# EXEEXT is set by configure to the extention of an executable file |
51 |
|
# OBJEXT is set by configure to the extention of an object file |
52 |
|
# The BUILD_* equivalents are the same but for the host we're building on |
53 |
|
|
54 |
|
EXEEXT = @EXEEXT@ |
55 |
|
OBJEXT = @OBJEXT@ |
56 |
|
# Note that these are just here to have a convenient place to look at the |
57 |
|
# outcome. |
58 |
|
BUILD_EXEEXT = @BUILD_EXEEXT@ |
59 |
|
BUILD_OBJEXT = @BUILD_OBJEXT@ |
60 |
|
|
61 |
|
# The compiler, C flags, preprocessor flags, etc |
62 |
|
|
63 |
CC = @CC@ |
CC = @CC@ |
64 |
CFLAGS = @CFLAGS@ |
CFLAGS = @CFLAGS@ |
65 |
HOST_CC = @HOST_CC@ |
CPPFLAGS = @CPPFLAGS@ |
66 |
HOST_CFLAGS = @HOST_CFLAGS@ |
CC_FOR_BUILD = @CC_FOR_BUILD@ |
67 |
UTF8 = @UTF8@ |
CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ |
68 |
|
CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@ |
69 |
|
UTF8 = @UTF8@ |
70 |
NEWLINE = @NEWLINE@ |
NEWLINE = @NEWLINE@ |
71 |
POSIX_MALLOC_THRESHOLD = @POSIX_MALLOC_THRESHOLD@ |
POSIX_MALLOC_THRESHOLD = @POSIX_MALLOC_THRESHOLD@ |
72 |
LINK_SIZE = @LINK_SIZE@ |
LINK_SIZE = @LINK_SIZE@ |
80 |
|
|
81 |
LIBTOOL = @LIBTOOL@ |
LIBTOOL = @LIBTOOL@ |
82 |
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) -I. -I$(top_srcdir) $(NEWLINE) $(LINK_SIZE) $(MATCH_LIMIT) |
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) -I. -I$(top_srcdir) $(NEWLINE) $(LINK_SIZE) $(MATCH_LIMIT) |
83 |
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -I. -I$(top_srcdir) |
@ON_WINDOWS@LINK = $(CC) $(CFLAGS) -I. -I$(top_srcdir) -L.libs |
84 |
|
@NOT_ON_WINDOWS@LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -I. -I$(top_srcdir) |
85 |
|
LINKLIB = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -I. -I$(top_srcdir) |
86 |
|
LINK_FOR_BUILD = $(LIBTOOL) --mode=link $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I. -I$(top_srcdir) |
87 |
|
|
88 |
# These are the version numbers for the shared libraries |
# These are the version numbers for the shared libraries |
89 |
|
|
93 |
############################################################################## |
############################################################################## |
94 |
|
|
95 |
|
|
96 |
OBJ = maketables.o get.o study.o pcre.o @POSIX_OBJ@ |
OBJ = maketables.@OBJEXT@ get.@OBJEXT@ study.@OBJEXT@ pcre.@OBJEXT@ @POSIX_OBJ@ |
97 |
LOBJ = maketables.lo get.lo study.lo pcre.lo @POSIX_LOBJ@ |
LOBJ = maketables.lo get.lo study.lo pcre.lo @POSIX_LOBJ@ |
98 |
|
|
99 |
all: libpcre.la @POSIX_LIB@ pcretest pcregrep |
all: libpcre.la @POSIX_LIB@ pcretest@EXEEXT@ pcregrep@EXEEXT@ @ON_WINDOWS@ winshared |
100 |
|
|
101 |
pcregrep: libpcre.la pcregrep.o |
pcregrep@EXEEXT@: libpcre.la pcregrep.@OBJEXT@ @ON_WINDOWS@ winshared |
102 |
$(LINK) -o pcregrep pcregrep.o libpcre.la |
$(LINK) -o pcregrep@EXEEXT@ pcregrep.@OBJEXT@ libpcre.la |
103 |
|
|
104 |
pcretest: libpcre.la @POSIX_LIB@ pcretest.o |
pcretest@EXEEXT@: libpcre.la @POSIX_LIB@ pcretest.@OBJEXT@ @ON_WINDOWS@ winshared |
105 |
$(LINK) $(PURIFY) $(EFENCE) -o pcretest pcretest.o \ |
$(LINK) $(PURIFY) $(EFENCE) -o pcretest@EXEEXT@ pcretest.@OBJEXT@ \ |
106 |
libpcre.la @POSIX_LIB@ |
libpcre.la @POSIX_LIB@ |
107 |
|
|
108 |
libpcre.la: $(OBJ) |
libpcre.la: $(OBJ) |
109 |
-rm -f libpcre.la |
-rm -f libpcre.la |
110 |
$(LINK) -rpath $(LIBDIR) -version-info \ |
$(LINKLIB) -rpath $(LIBDIR) -version-info \ |
111 |
'$(PCRELIBVERSION)' -o libpcre.la $(LOBJ) |
'$(PCRELIBVERSION)' -o libpcre.la $(LOBJ) |
112 |
|
|
113 |
libpcreposix.la: pcreposix.o |
libpcreposix.la: pcreposix.@OBJEXT@ |
114 |
-rm -f libpcreposix.la |
-rm -f libpcreposix.la |
115 |
$(LINK) -rpath $(LIBDIR) -version-info \ |
$(LINKLIB) -rpath $(LIBDIR) libpcre.la -version-info \ |
116 |
'$(PCREPOSIXLIBVERSION)' -o libpcreposix.la pcreposix.lo |
'$(PCREPOSIXLIBVERSION)' -o libpcreposix.la pcreposix.lo |
117 |
|
|
118 |
pcre.o: $(top_srcdir)/chartables.c $(top_srcdir)/pcre.c \ |
pcre.@OBJEXT@: $(top_srcdir)/chartables.c $(top_srcdir)/pcre.c \ |
119 |
$(top_srcdir)/internal.h $(top_srcdir)/printint.c \ |
$(top_srcdir)/internal.h $(top_srcdir)/printint.c \ |
120 |
pcre.h config.h Makefile |
pcre.h config.h Makefile |
121 |
$(LTCOMPILE) $(UTF8) $(POSIX_MALLOC_THRESHOLD) $(top_srcdir)/pcre.c |
$(LTCOMPILE) $(UTF8) $(POSIX_MALLOC_THRESHOLD) $(top_srcdir)/pcre.c |
122 |
|
|
123 |
pcreposix.o: $(top_srcdir)/pcreposix.c $(top_srcdir)/pcreposix.h \ |
pcreposix.@OBJEXT@: $(top_srcdir)/pcreposix.c $(top_srcdir)/pcreposix.h \ |
124 |
$(top_srcdir)/internal.h pcre.h config.h Makefile |
$(top_srcdir)/internal.h pcre.h config.h Makefile |
125 |
$(LTCOMPILE) $(POSIX_MALLOC_THRESHOLD) $(top_srcdir)/pcreposix.c |
$(LTCOMPILE) $(POSIX_MALLOC_THRESHOLD) $(top_srcdir)/pcreposix.c |
126 |
|
|
127 |
maketables.o: $(top_srcdir)/maketables.c $(top_srcdir)/internal.h \ |
maketables.@OBJEXT@: $(top_srcdir)/maketables.c $(top_srcdir)/internal.h \ |
128 |
pcre.h config.h Makefile |
pcre.h config.h Makefile |
129 |
$(LTCOMPILE) $(top_srcdir)/maketables.c |
$(LTCOMPILE) $(top_srcdir)/maketables.c |
130 |
|
|
131 |
get.o: $(top_srcdir)/get.c $(top_srcdir)/internal.h \ |
get.@OBJEXT@: $(top_srcdir)/get.c $(top_srcdir)/internal.h \ |
132 |
pcre.h config.h Makefile |
pcre.h config.h Makefile |
133 |
$(LTCOMPILE) $(top_srcdir)/get.c |
$(LTCOMPILE) $(top_srcdir)/get.c |
134 |
|
|
135 |
study.o: $(top_srcdir)/study.c $(top_srcdir)/internal.h \ |
study.@OBJEXT@: $(top_srcdir)/study.c $(top_srcdir)/internal.h \ |
136 |
pcre.h config.h Makefile |
pcre.h config.h Makefile |
137 |
$(LTCOMPILE) $(UTF8) $(top_srcdir)/study.c |
$(LTCOMPILE) $(UTF8) $(top_srcdir)/study.c |
138 |
|
|
139 |
pcretest.o: $(top_srcdir)/pcretest.c $(top_srcdir)/internal.h \ |
pcretest.@OBJEXT@: $(top_srcdir)/pcretest.c $(top_srcdir)/internal.h \ |
140 |
$(top_srcdir)/printint.c \ |
$(top_srcdir)/printint.c \ |
141 |
pcre.h config.h Makefile |
pcre.h config.h Makefile |
142 |
$(CC) -c $(CFLAGS) -I. $(UTF8) $(LINK_SIZE) $(top_srcdir)/pcretest.c |
$(CC) -c $(CFLAGS) -I. $(UTF8) $(LINK_SIZE) $(top_srcdir)/pcretest.c |
143 |
|
|
144 |
pcregrep.o: $(top_srcdir)/pcregrep.c pcre.h Makefile config.h |
pcregrep.@OBJEXT@: $(top_srcdir)/pcregrep.c pcre.h Makefile config.h |
145 |
$(CC) -c $(CFLAGS) -I. $(UTF8) $(PCREGREP_OSTYPE) $(top_srcdir)/pcregrep.c |
$(CC) -c $(CFLAGS) -I. $(UTF8) $(PCREGREP_OSTYPE) $(top_srcdir)/pcregrep.c |
146 |
|
|
147 |
|
# Some Windows-specific targets for MinGW. Do not use for Cygwin. |
148 |
|
|
149 |
|
winshared : .libs/@WIN_PREFIX@pcre.dll .libs/@WIN_PREFIX@pcreposix.dll |
150 |
|
|
151 |
|
.libs/@WIN_PREFIX@pcre.dll : libpcre.la |
152 |
|
$(CC) $(CFLAGS) -shared -o $@ \ |
153 |
|
-Wl,--whole-archive .libs/libpcre.a \ |
154 |
|
-Wl,--out-implib,.libs/libpcre.dll.a \ |
155 |
|
-Wl,--output-def,.libs/@WIN_PREFIX@pcre.dll-def \ |
156 |
|
-Wl,--export-all-symbols \ |
157 |
|
-Wl,--no-whole-archive |
158 |
|
sed -e "s#dlname=''#dlname='../bin/@WIN_PREFIX@pcre.dll'#" \ |
159 |
|
-e "s#library_names=''#library_names='libpcre.dll.a'#" \ |
160 |
|
< .libs/libpcre.lai > .libs/libpcre.lai.tmp && \ |
161 |
|
mv .libs/libpcre.lai.tmp .libs/libpcre.lai |
162 |
|
sed -e "s#dlname=''#dlname='../bin/@WIN_PREFIX@pcre.dll'#" \ |
163 |
|
-e "s#library_names=''#library_names='libpcre.dll.a'#" \ |
164 |
|
< libpcre.la > libpcre.la.tmp && \ |
165 |
|
mv libpcre.la.tmp libpcre.la |
166 |
|
|
167 |
|
|
168 |
|
.libs/@WIN_PREFIX@pcreposix.dll: libpcreposix.la libpcre.la |
169 |
|
$(CC) $(CFLAGS) -shared -o $@ \ |
170 |
|
-Wl,--whole-archive .libs/libpcreposix.a \ |
171 |
|
-Wl,--out-implib,.libs/@WIN_PREFIX@pcreposix.dll.a \ |
172 |
|
-Wl,--output-def,.libs/@WIN_PREFIX@libpcreposix.dll-def \ |
173 |
|
-Wl,--export-all-symbols \ |
174 |
|
-Wl,--no-whole-archive .libs/libpcre.a |
175 |
|
sed -e "s#dlname=''#dlname='../bin/@WIN_PREFIX@pcreposix.dll'#" \ |
176 |
|
-e "s#library_names=''#library_names='libpcreposix.dll.a'#"\ |
177 |
|
< .libs/libpcreposix.lai > .libs/libpcreposix.lai.tmp && \ |
178 |
|
mv .libs/libpcreposix.lai.tmp .libs/libpcreposix.lai |
179 |
|
sed -e "s#dlname=''#dlname='../bin/@WIN_PREFIX@pcreposix.dll'#" \ |
180 |
|
-e "s#library_names=''#library_names='libpcreposix.dll.a'#"\ |
181 |
|
< libpcreposix.la > libpcreposix.la.tmp && \ |
182 |
|
mv libpcreposix.la.tmp libpcreposix.la |
183 |
|
|
184 |
|
|
185 |
|
wininstall : winshared |
186 |
|
$(mkinstalldirs) $(DESTDIR)$(LIBDIR) |
187 |
|
$(mkinstalldirs) $(DESTDIR)$(BINDIR) |
188 |
|
$(INSTALL) .libs/@WIN_PREFIX@pcre.dll $(DESTDIR)$(BINDIR)/@WIN_PREFIX@pcre.dll |
189 |
|
$(INSTALL) .libs/@WIN_PREFIX@pcreposix.dll $(DESTDIR)$(BINDIR)/@WIN_PREFIX@pcreposix.dll |
190 |
|
$(INSTALL) .libs/@WIN_PREFIX@libpcreposix.dll.a $(DESTDIR)$(LIBDIR)/@WIN_PREFIX@libpcreposix.dll.a |
191 |
|
$(INSTALL) .libs/@WIN_PREFIX@libpcre.dll.a $(DESTDIR)$(LIBDIR)/@WIN_PREFIX@libpcre.dll.a |
192 |
|
-strip -g $(DESTDIR)$(BINDIR)/@WIN_PREFIX@pcre.dll |
193 |
|
-strip -g $(DESTDIR)$(BINDIR)/@WIN_PREFIX@pcreposix.dll |
194 |
|
-strip $(DESTDIR)$(BINDIR)/pcregrep@EXEEXT@ |
195 |
|
-strip $(DESTDIR)$(BINDIR)/pcretest@EXEEXT@ |
196 |
|
|
197 |
# An auxiliary program makes the default character table source |
# An auxiliary program makes the default character table source |
198 |
|
|
199 |
$(top_srcdir)/chartables.c: dftables |
$(top_srcdir)/chartables.c: dftables |
200 |
./dftables >$(top_srcdir)/chartables.c |
./dftables >$(top_srcdir)/chartables.c |
201 |
|
|
202 |
dftables.o: $(top_srcdir)/dftables.c $(top_srcdir)/maketables.c \ |
dftables.@BUILD_OBJEXT@: $(top_srcdir)/dftables.c $(top_srcdir)/maketables.c \ |
203 |
$(top_srcdir)/internal.h pcre.h config.h Makefile |
$(top_srcdir)/internal.h pcre.h config.h Makefile |
204 |
$(HOST_CC) -c $(HOST_CFLAGS) -I. $(top_srcdir)/dftables.c |
$(CC_FOR_BUILD) -c $(CFLAGS_FOR_BUILD) -I. $(top_srcdir)/dftables.c |
205 |
|
|
206 |
dftables: dftables.o |
dftables: dftables.@BUILD_OBJEXT@ |
207 |
$(LINK) -o dftables dftables.o |
$(LINK_FOR_BUILD) -o dftables dftables.@OBJEXT@ |
208 |
|
|
209 |
install: all |
install: all @ON_WINDOWS@ wininstall |
210 |
$(mkinstalldirs) $(DESTDIR)$(LIBDIR) |
@NOT_ON_WINDOWS@ $(mkinstalldirs) $(DESTDIR)$(LIBDIR) |
211 |
echo "$(LIBTOOL) --mode=install $(INSTALL) libpcre.la $(DESTDIR)$(LIBDIR)/libpcre.la" |
@NOT_ON_WINDOWS@ echo "$(LIBTOOL) --mode=install $(INSTALL) libpcre.la $(DESTDIR)$(LIBDIR)/libpcre.la" |
212 |
$(LIBTOOL) --mode=install $(INSTALL) libpcre.la $(DESTDIR)$(LIBDIR)/libpcre.la |
@NOT_ON_WINDOWS@ $(LIBTOOL) --mode=install $(INSTALL) libpcre.la $(DESTDIR)$(LIBDIR)/libpcre.la |
213 |
echo "$(LIBTOOL) --mode=install $(INSTALL) libpcreposix.la $(DESTDIR)$(LIBDIR)/libpcreposix.la" |
@NOT_ON_WINDOWS@ echo "$(LIBTOOL) --mode=install $(INSTALL) libpcreposix.la $(DESTDIR)$(LIBDIR)/libpcreposix.la" |
214 |
$(LIBTOOL) --mode=install $(INSTALL) libpcreposix.la $(DESTDIR)$(LIBDIR)/libpcreposix.la |
@NOT_ON_WINDOWS@ $(LIBTOOL) --mode=install $(INSTALL) libpcreposix.la $(DESTDIR)$(LIBDIR)/libpcreposix.la |
215 |
$(LIBTOOL) --finish $(DESTDIR)$(LIBDIR) |
@NOT_ON_WINDOWS@ $(LIBTOOL) --finish $(DESTDIR)$(LIBDIR) |
216 |
$(mkinstalldirs) $(DESTDIR)$(INCDIR) |
$(mkinstalldirs) $(DESTDIR)$(INCDIR) |
217 |
$(INSTALL_DATA) pcre.h $(DESTDIR)$(INCDIR)/pcre.h |
$(INSTALL_DATA) pcre.h $(DESTDIR)$(INCDIR)/pcre.h |
218 |
$(INSTALL_DATA) $(top_srcdir)/pcreposix.h $(DESTDIR)$(INCDIR)/pcreposix.h |
$(INSTALL_DATA) $(top_srcdir)/pcreposix.h $(DESTDIR)$(INCDIR)/pcreposix.h |
246 |
$(INSTALL_DATA) $(top_srcdir)/doc/pcregrep.1 $(DESTDIR)$(MANDIR)/man1/pcregrep.1 |
$(INSTALL_DATA) $(top_srcdir)/doc/pcregrep.1 $(DESTDIR)$(MANDIR)/man1/pcregrep.1 |
247 |
$(INSTALL_DATA) $(top_srcdir)/doc/pcretest.1 $(DESTDIR)$(MANDIR)/man1/pcretest.1 |
$(INSTALL_DATA) $(top_srcdir)/doc/pcretest.1 $(DESTDIR)$(MANDIR)/man1/pcretest.1 |
248 |
$(mkinstalldirs) $(DESTDIR)$(BINDIR) |
$(mkinstalldirs) $(DESTDIR)$(BINDIR) |
249 |
$(LIBTOOL) --mode=install $(INSTALL) pcregrep $(DESTDIR)$(BINDIR)/pcregrep |
$(LIBTOOL) --mode=install $(INSTALL) pcregrep@EXEEXT@ $(DESTDIR)$(BINDIR)/pcregrep@EXEEXT@ |
250 |
$(LIBTOOL) --mode=install $(INSTALL) pcretest $(DESTDIR)$(BINDIR)/pcretest |
$(LIBTOOL) --mode=install $(INSTALL) pcretest@EXEEXT@ $(DESTDIR)$(BINDIR)/pcretest@EXEEXT@ |
251 |
$(INSTALL) pcre-config $(DESTDIR)$(BINDIR)/pcre-config |
$(INSTALL) pcre-config $(DESTDIR)$(BINDIR)/pcre-config |
252 |
|
|
253 |
# We deliberately omit dftables and chartables.c from 'make clean'; once made |
# We deliberately omit dftables and chartables.c from 'make clean'; once made |
254 |
# chartables.c shouldn't change, and if people have edited the tables by hand, |
# chartables.c shouldn't change, and if people have edited the tables by hand, |
255 |
# you don't want to throw them away. |
# you don't want to throw them away. |
256 |
|
|
257 |
clean:; -rm -rf *.o *.lo *.a *.la .libs pcretest pcregrep testtry |
clean:; -rm -rf *.@OBJEXT@ *.lo *.a *.la .libs pcretest@EXEEXT@ pcregrep@EXEEXT@ testtry |
258 |
|
|
259 |
# But "make distclean" should get back to a virgin distribution |
# But "make distclean" should get back to a virgin distribution |
260 |
|
|
264 |
|
|
265 |
check: runtest |
check: runtest |
266 |
|
|
267 |
|
@WIN_PREFIX@pcre.dll : winshared |
268 |
|
cp .libs/@WIN_PREFIX@pcre.dll . |
269 |
|
|
270 |
test: runtest |
test: runtest |
271 |
|
|
272 |
runtest: all |
runtest: all @ON_WINDOWS@ @WIN_PREFIX@pcre.dll |
273 |
./RunTest |
./RunTest |
274 |
|
|
275 |
# End |
# End |