56 |
|
|
57 |
CC = @CC@ |
CC = @CC@ |
58 |
CFLAGS = @CFLAGS@ |
CFLAGS = @CFLAGS@ |
59 |
HOST_CC = @HOST_CC@ |
CC_FOR_BUILD = @CC_FOR_BUILD@ |
60 |
HOST_CFLAGS = @HOST_CFLAGS@ |
CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ |
61 |
UTF8 = @UTF8@ |
UTF8 = @UTF8@ |
62 |
NEWLINE = @NEWLINE@ |
NEWLINE = @NEWLINE@ |
63 |
POSIX_MALLOC_THRESHOLD = @POSIX_MALLOC_THRESHOLD@ |
POSIX_MALLOC_THRESHOLD = @POSIX_MALLOC_THRESHOLD@ |
64 |
LINK_SIZE = @LINK_SIZE@ |
LINK_SIZE = @LINK_SIZE@ |
72 |
|
|
73 |
LIBTOOL = @LIBTOOL@ |
LIBTOOL = @LIBTOOL@ |
74 |
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) |
75 |
LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -I. -I$(top_srcdir) |
LINK = $(LIBTOOL) --mode=link $(CC) --no-undefined $(CFLAGS) -I. -I$(top_srcdir) |
76 |
|
|
77 |
# These are the version numbers for the shared libraries |
# These are the version numbers for the shared libraries |
78 |
|
|
101 |
|
|
102 |
libpcreposix.la: pcreposix.o |
libpcreposix.la: pcreposix.o |
103 |
-rm -f libpcreposix.la |
-rm -f libpcreposix.la |
104 |
$(LINK) -rpath $(LIBDIR) -version-info \ |
$(LINK) -rpath $(LIBDIR) -L. -lpcre -version-info \ |
105 |
'$(PCREPOSIXLIBVERSION)' -o libpcreposix.la pcreposix.lo |
'$(PCREPOSIXLIBVERSION)' -o libpcreposix.la pcreposix.lo |
106 |
|
|
107 |
pcre.o: $(top_srcdir)/chartables.c $(top_srcdir)/pcre.c \ |
pcre.o: $(top_srcdir)/chartables.c $(top_srcdir)/pcre.c \ |
140 |
|
|
141 |
dftables.o: $(top_srcdir)/dftables.c $(top_srcdir)/maketables.c \ |
dftables.o: $(top_srcdir)/dftables.c $(top_srcdir)/maketables.c \ |
142 |
$(top_srcdir)/internal.h pcre.h config.h Makefile |
$(top_srcdir)/internal.h pcre.h config.h Makefile |
143 |
$(HOST_CC) -c $(HOST_CFLAGS) -I. $(top_srcdir)/dftables.c |
$(CC_FOR_BUILD) -c $(CFLAGS_FOR_BUILD) -I. $(top_srcdir)/dftables.c |
144 |
|
|
145 |
dftables: dftables.o |
dftables: dftables.o |
146 |
$(LINK) -o dftables dftables.o |
$(LINK) -o dftables dftables.o |