| 1 |
nigel |
41 |
|
| 2 |
|
|
# Makefile.in for PCRE (Perl-Compatible Regular Expression) library. |
| 3 |
|
|
|
| 4 |
|
|
|
| 5 |
nigel |
53 |
############################################################################# |
| 6 |
|
|
|
| 7 |
|
|
# 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 |
| 9 |
|
|
# be very portable, the building system in this Makefile is designed for Unix |
| 10 |
nigel |
71 |
# 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 |
nigel |
53 |
|
| 13 |
|
|
# 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. |
| 15 |
|
|
|
| 16 |
|
|
PCREGREP_OSTYPE=-DIS_UNIX |
| 17 |
|
|
|
| 18 |
|
|
############################################################################# |
| 19 |
|
|
|
| 20 |
|
|
|
| 21 |
nigel |
41 |
#---------------------------------------------------------------------------# |
| 22 |
nigel |
53 |
# The following lines are modified by "configure" to insert data that it is # |
| 23 |
nigel |
41 |
# given in its arguments, or which it finds out for itself. # |
| 24 |
|
|
#---------------------------------------------------------------------------# |
| 25 |
|
|
|
| 26 |
nigel |
53 |
SHELL = @SHELL@ |
| 27 |
nigel |
41 |
prefix = @prefix@ |
| 28 |
|
|
exec_prefix = @exec_prefix@ |
| 29 |
nigel |
53 |
top_srcdir = @top_srcdir@ |
| 30 |
nigel |
41 |
|
| 31 |
nigel |
53 |
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs |
| 32 |
|
|
|
| 33 |
|
|
# NB: top_builddir is not referred to directly below, but it is used in the |
| 34 |
|
|
# setting of $(LIBTOOL), so don't remove it! |
| 35 |
|
|
|
| 36 |
|
|
top_builddir = . |
| 37 |
|
|
|
| 38 |
|
|
# BINDIR is the directory in which the pcregrep, pcretest, and pcre-config |
| 39 |
|
|
# commands are installed. |
| 40 |
|
|
# INCDIR is the directory in which the public header files pcre.h and |
| 41 |
|
|
# pcreposix.h are installed. |
| 42 |
|
|
# LIBDIR is the directory in which the libraries are installed. |
| 43 |
|
|
# MANDIR is the directory in which the man pages are installed. |
| 44 |
|
|
|
| 45 |
nigel |
43 |
BINDIR = @bindir@ |
| 46 |
|
|
LIBDIR = @libdir@ |
| 47 |
|
|
INCDIR = @includedir@ |
| 48 |
|
|
MANDIR = @mandir@ |
| 49 |
nigel |
41 |
|
| 50 |
nigel |
67 |
# 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 |
nigel |
41 |
CC = @CC@ |
| 64 |
|
|
CFLAGS = @CFLAGS@ |
| 65 |
nigel |
67 |
CPPFLAGS = @CPPFLAGS@ |
| 66 |
nigel |
73 |
|
| 67 |
nigel |
65 |
CC_FOR_BUILD = @CC_FOR_BUILD@ |
| 68 |
|
|
CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ |
| 69 |
nigel |
67 |
CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@ |
| 70 |
nigel |
73 |
|
| 71 |
nigel |
65 |
UTF8 = @UTF8@ |
| 72 |
nigel |
53 |
NEWLINE = @NEWLINE@ |
| 73 |
nigel |
63 |
POSIX_MALLOC_THRESHOLD = @POSIX_MALLOC_THRESHOLD@ |
| 74 |
|
|
LINK_SIZE = @LINK_SIZE@ |
| 75 |
nigel |
73 |
MATCH_LIMIT = @MATCH_LIMIT@ |
| 76 |
|
|
NO_RECURSE = @NO_RECURSE@ |
| 77 |
|
|
EBCDIC = @EBCDIC@ |
| 78 |
nigel |
41 |
|
| 79 |
nigel |
53 |
INSTALL = @INSTALL@ |
| 80 |
|
|
INSTALL_DATA = @INSTALL_DATA@ |
| 81 |
nigel |
41 |
|
| 82 |
nigel |
53 |
# LIBTOOL enables the building of shared and static libraries. It is set up |
| 83 |
|
|
# to do one or the other or both by ./configure. |
| 84 |
|
|
|
| 85 |
nigel |
41 |
LIBTOOL = @LIBTOOL@ |
| 86 |
nigel |
73 |
LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) -c $(CFLAGS) -I. -I$(top_srcdir) $(NEWLINE) $(LINK_SIZE) $(MATCH_LIMIT) $(NO_RECURSE) $(EBCDIC) |
| 87 |
nigel |
67 |
@ON_WINDOWS@LINK = $(CC) $(CFLAGS) -I. -I$(top_srcdir) -L.libs |
| 88 |
|
|
@NOT_ON_WINDOWS@LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -I. -I$(top_srcdir) |
| 89 |
|
|
LINKLIB = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -I. -I$(top_srcdir) |
| 90 |
|
|
LINK_FOR_BUILD = $(LIBTOOL) --mode=link $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) -I. -I$(top_srcdir) |
| 91 |
nigel |
41 |
|
| 92 |
nigel |
43 |
# These are the version numbers for the shared libraries |
| 93 |
nigel |
41 |
|
| 94 |
nigel |
43 |
PCRELIBVERSION = @PCRE_LIB_VERSION@ |
| 95 |
|
|
PCREPOSIXLIBVERSION = @PCRE_POSIXLIB_VERSION@ |
| 96 |
|
|
|
| 97 |
nigel |
41 |
############################################################################## |
| 98 |
|
|
|
| 99 |
|
|
|
| 100 |
nigel |
67 |
OBJ = maketables.@OBJEXT@ get.@OBJEXT@ study.@OBJEXT@ pcre.@OBJEXT@ @POSIX_OBJ@ |
| 101 |
nigel |
63 |
LOBJ = maketables.lo get.lo study.lo pcre.lo @POSIX_LOBJ@ |
| 102 |
nigel |
41 |
|
| 103 |
nigel |
67 |
all: libpcre.la @POSIX_LIB@ pcretest@EXEEXT@ pcregrep@EXEEXT@ @ON_WINDOWS@ winshared |
| 104 |
nigel |
41 |
|
| 105 |
nigel |
67 |
pcregrep@EXEEXT@: libpcre.la pcregrep.@OBJEXT@ @ON_WINDOWS@ winshared |
| 106 |
nigel |
71 |
$(LINK) -o pcregrep@EXEEXT@ pcregrep.@OBJEXT@ libpcre.la |
| 107 |
nigel |
41 |
|
| 108 |
nigel |
67 |
pcretest@EXEEXT@: libpcre.la @POSIX_LIB@ pcretest.@OBJEXT@ @ON_WINDOWS@ winshared |
| 109 |
|
|
$(LINK) $(PURIFY) $(EFENCE) -o pcretest@EXEEXT@ pcretest.@OBJEXT@ \ |
| 110 |
nigel |
71 |
libpcre.la @POSIX_LIB@ |
| 111 |
nigel |
41 |
|
| 112 |
|
|
libpcre.la: $(OBJ) |
| 113 |
|
|
-rm -f libpcre.la |
| 114 |
nigel |
67 |
$(LINKLIB) -rpath $(LIBDIR) -version-info \ |
| 115 |
nigel |
53 |
'$(PCRELIBVERSION)' -o libpcre.la $(LOBJ) |
| 116 |
nigel |
41 |
|
| 117 |
nigel |
73 |
libpcreposix.la: libpcre.la pcreposix.@OBJEXT@ |
| 118 |
nigel |
41 |
-rm -f libpcreposix.la |
| 119 |
nigel |
71 |
$(LINKLIB) -rpath $(LIBDIR) libpcre.la -version-info \ |
| 120 |
nigel |
53 |
'$(PCREPOSIXLIBVERSION)' -o libpcreposix.la pcreposix.lo |
| 121 |
nigel |
41 |
|
| 122 |
nigel |
67 |
pcre.@OBJEXT@: $(top_srcdir)/chartables.c $(top_srcdir)/pcre.c \ |
| 123 |
nigel |
63 |
$(top_srcdir)/internal.h $(top_srcdir)/printint.c \ |
| 124 |
|
|
pcre.h config.h Makefile |
| 125 |
|
|
$(LTCOMPILE) $(UTF8) $(POSIX_MALLOC_THRESHOLD) $(top_srcdir)/pcre.c |
| 126 |
nigel |
41 |
|
| 127 |
nigel |
67 |
pcreposix.@OBJEXT@: $(top_srcdir)/pcreposix.c $(top_srcdir)/pcreposix.h \ |
| 128 |
nigel |
53 |
$(top_srcdir)/internal.h pcre.h config.h Makefile |
| 129 |
nigel |
63 |
$(LTCOMPILE) $(POSIX_MALLOC_THRESHOLD) $(top_srcdir)/pcreposix.c |
| 130 |
nigel |
41 |
|
| 131 |
nigel |
67 |
maketables.@OBJEXT@: $(top_srcdir)/maketables.c $(top_srcdir)/internal.h \ |
| 132 |
nigel |
53 |
pcre.h config.h Makefile |
| 133 |
|
|
$(LTCOMPILE) $(top_srcdir)/maketables.c |
| 134 |
nigel |
41 |
|
| 135 |
nigel |
67 |
get.@OBJEXT@: $(top_srcdir)/get.c $(top_srcdir)/internal.h \ |
| 136 |
nigel |
53 |
pcre.h config.h Makefile |
| 137 |
|
|
$(LTCOMPILE) $(top_srcdir)/get.c |
| 138 |
nigel |
41 |
|
| 139 |
nigel |
67 |
study.@OBJEXT@: $(top_srcdir)/study.c $(top_srcdir)/internal.h \ |
| 140 |
nigel |
53 |
pcre.h config.h Makefile |
| 141 |
|
|
$(LTCOMPILE) $(UTF8) $(top_srcdir)/study.c |
| 142 |
nigel |
41 |
|
| 143 |
nigel |
67 |
pcretest.@OBJEXT@: $(top_srcdir)/pcretest.c $(top_srcdir)/internal.h \ |
| 144 |
nigel |
63 |
$(top_srcdir)/printint.c \ |
| 145 |
|
|
pcre.h config.h Makefile |
| 146 |
|
|
$(CC) -c $(CFLAGS) -I. $(UTF8) $(LINK_SIZE) $(top_srcdir)/pcretest.c |
| 147 |
nigel |
41 |
|
| 148 |
nigel |
67 |
pcregrep.@OBJEXT@: $(top_srcdir)/pcregrep.c pcre.h Makefile config.h |
| 149 |
nigel |
61 |
$(CC) -c $(CFLAGS) -I. $(UTF8) $(PCREGREP_OSTYPE) $(top_srcdir)/pcregrep.c |
| 150 |
nigel |
41 |
|
| 151 |
nigel |
71 |
# Some Windows-specific targets for MinGW. Do not use for Cygwin. |
| 152 |
nigel |
67 |
|
| 153 |
|
|
winshared : .libs/@WIN_PREFIX@pcre.dll .libs/@WIN_PREFIX@pcreposix.dll |
| 154 |
|
|
|
| 155 |
|
|
.libs/@WIN_PREFIX@pcre.dll : libpcre.la |
| 156 |
|
|
$(CC) $(CFLAGS) -shared -o $@ \ |
| 157 |
|
|
-Wl,--whole-archive .libs/libpcre.a \ |
| 158 |
|
|
-Wl,--out-implib,.libs/libpcre.dll.a \ |
| 159 |
|
|
-Wl,--output-def,.libs/@WIN_PREFIX@pcre.dll-def \ |
| 160 |
|
|
-Wl,--export-all-symbols \ |
| 161 |
|
|
-Wl,--no-whole-archive |
| 162 |
|
|
sed -e "s#dlname=''#dlname='../bin/@WIN_PREFIX@pcre.dll'#" \ |
| 163 |
|
|
-e "s#library_names=''#library_names='libpcre.dll.a'#" \ |
| 164 |
|
|
< .libs/libpcre.lai > .libs/libpcre.lai.tmp && \ |
| 165 |
|
|
mv .libs/libpcre.lai.tmp .libs/libpcre.lai |
| 166 |
|
|
sed -e "s#dlname=''#dlname='../bin/@WIN_PREFIX@pcre.dll'#" \ |
| 167 |
|
|
-e "s#library_names=''#library_names='libpcre.dll.a'#" \ |
| 168 |
|
|
< libpcre.la > libpcre.la.tmp && \ |
| 169 |
|
|
mv libpcre.la.tmp libpcre.la |
| 170 |
|
|
|
| 171 |
|
|
|
| 172 |
|
|
.libs/@WIN_PREFIX@pcreposix.dll: libpcreposix.la libpcre.la |
| 173 |
|
|
$(CC) $(CFLAGS) -shared -o $@ \ |
| 174 |
|
|
-Wl,--whole-archive .libs/libpcreposix.a \ |
| 175 |
nigel |
71 |
-Wl,--out-implib,.libs/@WIN_PREFIX@pcreposix.dll.a \ |
| 176 |
|
|
-Wl,--output-def,.libs/@WIN_PREFIX@libpcreposix.dll-def \ |
| 177 |
nigel |
67 |
-Wl,--export-all-symbols \ |
| 178 |
|
|
-Wl,--no-whole-archive .libs/libpcre.a |
| 179 |
|
|
sed -e "s#dlname=''#dlname='../bin/@WIN_PREFIX@pcreposix.dll'#" \ |
| 180 |
|
|
-e "s#library_names=''#library_names='libpcreposix.dll.a'#"\ |
| 181 |
|
|
< .libs/libpcreposix.lai > .libs/libpcreposix.lai.tmp && \ |
| 182 |
|
|
mv .libs/libpcreposix.lai.tmp .libs/libpcreposix.lai |
| 183 |
|
|
sed -e "s#dlname=''#dlname='../bin/@WIN_PREFIX@pcreposix.dll'#" \ |
| 184 |
|
|
-e "s#library_names=''#library_names='libpcreposix.dll.a'#"\ |
| 185 |
|
|
< libpcreposix.la > libpcreposix.la.tmp && \ |
| 186 |
|
|
mv libpcreposix.la.tmp libpcreposix.la |
| 187 |
|
|
|
| 188 |
|
|
|
| 189 |
|
|
wininstall : winshared |
| 190 |
|
|
$(mkinstalldirs) $(DESTDIR)$(LIBDIR) |
| 191 |
|
|
$(mkinstalldirs) $(DESTDIR)$(BINDIR) |
| 192 |
|
|
$(INSTALL) .libs/@WIN_PREFIX@pcre.dll $(DESTDIR)$(BINDIR)/@WIN_PREFIX@pcre.dll |
| 193 |
|
|
$(INSTALL) .libs/@WIN_PREFIX@pcreposix.dll $(DESTDIR)$(BINDIR)/@WIN_PREFIX@pcreposix.dll |
| 194 |
nigel |
69 |
$(INSTALL) .libs/@WIN_PREFIX@libpcreposix.dll.a $(DESTDIR)$(LIBDIR)/@WIN_PREFIX@libpcreposix.dll.a |
| 195 |
|
|
$(INSTALL) .libs/@WIN_PREFIX@libpcre.dll.a $(DESTDIR)$(LIBDIR)/@WIN_PREFIX@libpcre.dll.a |
| 196 |
nigel |
67 |
-strip -g $(DESTDIR)$(BINDIR)/@WIN_PREFIX@pcre.dll |
| 197 |
|
|
-strip -g $(DESTDIR)$(BINDIR)/@WIN_PREFIX@pcreposix.dll |
| 198 |
|
|
-strip $(DESTDIR)$(BINDIR)/pcregrep@EXEEXT@ |
| 199 |
|
|
-strip $(DESTDIR)$(BINDIR)/pcretest@EXEEXT@ |
| 200 |
|
|
|
| 201 |
nigel |
41 |
# An auxiliary program makes the default character table source |
| 202 |
|
|
|
| 203 |
nigel |
57 |
$(top_srcdir)/chartables.c: dftables |
| 204 |
nigel |
73 |
./dftables $(top_srcdir)/chartables.c |
| 205 |
nigel |
41 |
|
| 206 |
nigel |
67 |
dftables.@BUILD_OBJEXT@: $(top_srcdir)/dftables.c $(top_srcdir)/maketables.c \ |
| 207 |
nigel |
53 |
$(top_srcdir)/internal.h pcre.h config.h Makefile |
| 208 |
nigel |
65 |
$(CC_FOR_BUILD) -c $(CFLAGS_FOR_BUILD) -I. $(top_srcdir)/dftables.c |
| 209 |
nigel |
41 |
|
| 210 |
nigel |
67 |
dftables: dftables.@BUILD_OBJEXT@ |
| 211 |
|
|
$(LINK_FOR_BUILD) -o dftables dftables.@OBJEXT@ |
| 212 |
nigel |
63 |
|
| 213 |
nigel |
67 |
install: all @ON_WINDOWS@ wininstall |
| 214 |
|
|
@NOT_ON_WINDOWS@ $(mkinstalldirs) $(DESTDIR)$(LIBDIR) |
| 215 |
|
|
@NOT_ON_WINDOWS@ echo "$(LIBTOOL) --mode=install $(INSTALL) libpcre.la $(DESTDIR)$(LIBDIR)/libpcre.la" |
| 216 |
|
|
@NOT_ON_WINDOWS@ $(LIBTOOL) --mode=install $(INSTALL) libpcre.la $(DESTDIR)$(LIBDIR)/libpcre.la |
| 217 |
|
|
@NOT_ON_WINDOWS@ echo "$(LIBTOOL) --mode=install $(INSTALL) libpcreposix.la $(DESTDIR)$(LIBDIR)/libpcreposix.la" |
| 218 |
|
|
@NOT_ON_WINDOWS@ $(LIBTOOL) --mode=install $(INSTALL) libpcreposix.la $(DESTDIR)$(LIBDIR)/libpcreposix.la |
| 219 |
|
|
@NOT_ON_WINDOWS@ $(LIBTOOL) --finish $(DESTDIR)$(LIBDIR) |
| 220 |
nigel |
63 |
$(mkinstalldirs) $(DESTDIR)$(INCDIR) |
| 221 |
|
|
$(INSTALL_DATA) pcre.h $(DESTDIR)$(INCDIR)/pcre.h |
| 222 |
|
|
$(INSTALL_DATA) $(top_srcdir)/pcreposix.h $(DESTDIR)$(INCDIR)/pcreposix.h |
| 223 |
|
|
$(mkinstalldirs) $(DESTDIR)$(MANDIR)/man3 |
| 224 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre.3 $(DESTDIR)$(MANDIR)/man3/pcre.3 |
| 225 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcreapi.3 $(DESTDIR)$(MANDIR)/man3/pcreapi.3 |
| 226 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcrebuild.3 $(DESTDIR)$(MANDIR)/man3/pcrebuild.3 |
| 227 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcrecallout.3 $(DESTDIR)$(MANDIR)/man3/pcrecallout.3 |
| 228 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcrecompat.3 $(DESTDIR)$(MANDIR)/man3/pcrecompat.3 |
| 229 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcrepattern.3 $(DESTDIR)$(MANDIR)/man3/pcrepattern.3 |
| 230 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcreperform.3 $(DESTDIR)$(MANDIR)/man3/pcreperform.3 |
| 231 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcreposix.3 $(DESTDIR)$(MANDIR)/man3/pcreposix.3 |
| 232 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcresample.3 $(DESTDIR)$(MANDIR)/man3/pcresample.3 |
| 233 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_compile.3 $(DESTDIR)$(MANDIR)/man3/pcre_compile.3 |
| 234 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_config.3 $(DESTDIR)$(MANDIR)/man3/pcre_config.3 |
| 235 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_copy_named_substring.3 $(DESTDIR)$(MANDIR)/man3/pcre_copy_named_substring.3 |
| 236 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_copy_substring.3 $(DESTDIR)$(MANDIR)/man3/pcre_copy_substring.3 |
| 237 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_exec.3 $(DESTDIR)$(MANDIR)/man3/pcre_exec.3 |
| 238 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_free_substring.3 $(DESTDIR)$(MANDIR)/man3/pcre_free_substring.3 |
| 239 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_free_substring_list.3 $(DESTDIR)$(MANDIR)/man3/pcre_free_substring_list.3 |
| 240 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_fullinfo.3 $(DESTDIR)$(MANDIR)/man3/pcre_fullinfo.3 |
| 241 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_get_named_substring.3 $(DESTDIR)$(MANDIR)/man3/pcre_get_named_substring.3 |
| 242 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_get_stringnumber.3 $(DESTDIR)$(MANDIR)/man3/pcre_get_stringnumber.3 |
| 243 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_get_substring.3 $(DESTDIR)$(MANDIR)/man3/pcre_get_substring.3 |
| 244 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_get_substring_list.3 $(DESTDIR)$(MANDIR)/man3/pcre_get_substring_list.3 |
| 245 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_info.3 $(DESTDIR)$(MANDIR)/man3/pcre_info.3 |
| 246 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_maketables.3 $(DESTDIR)$(MANDIR)/man3/pcre_maketables.3 |
| 247 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_study.3 $(DESTDIR)$(MANDIR)/man3/pcre_study.3 |
| 248 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcre_version.3 $(DESTDIR)$(MANDIR)/man3/pcre_version.3 |
| 249 |
|
|
$(mkinstalldirs) $(DESTDIR)$(MANDIR)/man1 |
| 250 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcregrep.1 $(DESTDIR)$(MANDIR)/man1/pcregrep.1 |
| 251 |
|
|
$(INSTALL_DATA) $(top_srcdir)/doc/pcretest.1 $(DESTDIR)$(MANDIR)/man1/pcretest.1 |
| 252 |
|
|
$(mkinstalldirs) $(DESTDIR)$(BINDIR) |
| 253 |
nigel |
67 |
$(LIBTOOL) --mode=install $(INSTALL) pcregrep@EXEEXT@ $(DESTDIR)$(BINDIR)/pcregrep@EXEEXT@ |
| 254 |
|
|
$(LIBTOOL) --mode=install $(INSTALL) pcretest@EXEEXT@ $(DESTDIR)$(BINDIR)/pcretest@EXEEXT@ |
| 255 |
nigel |
63 |
$(INSTALL) pcre-config $(DESTDIR)$(BINDIR)/pcre-config |
| 256 |
nigel |
41 |
|
| 257 |
|
|
# We deliberately omit dftables and chartables.c from 'make clean'; once made |
| 258 |
|
|
# chartables.c shouldn't change, and if people have edited the tables by hand, |
| 259 |
|
|
# you don't want to throw them away. |
| 260 |
|
|
|
| 261 |
nigel |
67 |
clean:; -rm -rf *.@OBJEXT@ *.lo *.a *.la .libs pcretest@EXEEXT@ pcregrep@EXEEXT@ testtry |
| 262 |
nigel |
41 |
|
| 263 |
|
|
# But "make distclean" should get back to a virgin distribution |
| 264 |
|
|
|
| 265 |
|
|
distclean: clean |
| 266 |
nigel |
43 |
-rm -f chartables.c libtool pcre-config pcre.h \ |
| 267 |
nigel |
41 |
Makefile config.h config.status config.log config.cache |
| 268 |
|
|
|
| 269 |
|
|
check: runtest |
| 270 |
|
|
|
| 271 |
nigel |
67 |
@WIN_PREFIX@pcre.dll : winshared |
| 272 |
|
|
cp .libs/@WIN_PREFIX@pcre.dll . |
| 273 |
|
|
|
| 274 |
nigel |
49 |
test: runtest |
| 275 |
|
|
|
| 276 |
nigel |
67 |
runtest: all @ON_WINDOWS@ @WIN_PREFIX@pcre.dll |
| 277 |
nigel |
73 |
@./RunTest |
| 278 |
nigel |
41 |
|
| 279 |
|
|
# End |