aboutsummaryrefslogtreecommitdiff
path: root/ares/Makefile.in
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-02-03 13:58:08 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-02-03 13:58:08 +0000
commit14b36a8cba7336e020fb1a3a1e2c751f8947225c (patch)
tree188dabaddfd573fe657dcfdc9f8db232043899a3 /ares/Makefile.in
parent1089d91e775d284f5f1750376cd244f2bd106fb0 (diff)
We now produce 'libcares.a' instead, to make it possible to have both c-ares
and the original ares installed in the same lib dir.
Diffstat (limited to 'ares/Makefile.in')
-rw-r--r--ares/Makefile.in21
1 files changed, 11 insertions, 10 deletions
diff --git a/ares/Makefile.in b/ares/Makefile.in
index 2c4bfbb84..4961d080b 100644
--- a/ares/Makefile.in
+++ b/ares/Makefile.in
@@ -12,6 +12,7 @@ libdir=@libdir@
includedir=@includedir@
mandir=@mandir@
+LIB=libcares.a
CC=@CC@
CPPFLAGS=@CPPFLAGS@
CFLAGS=@CFLAGS@ ${WARN_CFLAGS} ${ERROR_CFLAGS}
@@ -26,17 +27,17 @@ OBJS= ares__close_sockets.o ares__get_hostent.o ares__read_line.o \
ares_parse_ptr_reply.o ares_process.o ares_query.o ares_search.o \
ares_send.o ares_strerror.o ares_timeout.o ares_version.o
-all: libares.a adig ahost
+all: $(LIB) adig ahost
-libares.a: ${OBJS}
+$(LIB): ${OBJS}
ar cru $@ ${OBJS}
${RANLIB} $@
-adig: adig.o libares.a
- ${CC} ${LDFLAGS} -o $@ adig.o libares.a ${LIBS}
+adig: adig.o $(LIB)
+ ${CC} ${LDFLAGS} -o $@ adig.o $(LIB) ${LIBS}
-ahost: ahost.o libares.a
- ${CC} ${LDFLAGS} -o $@ ahost.o libares.a ${LIBS}
+ahost: ahost.o $(LIB)
+ ${CC} ${LDFLAGS} -o $@ ahost.o $(LIB) ${LIBS}
${OBJS}: ares.h ares_dns.h ares_private.h
@@ -49,9 +50,9 @@ install:
${top_srcdir}/mkinstalldirs ${DESTDIR}${libdir}
${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}
${top_srcdir}/mkinstalldirs ${DESTDIR}${mandir}/man3
- ${INSTALL} -m 644 libares.a ${DESTDIR}${libdir}
- ${RANLIB} ${DESTDIR}${libdir}/libares.a
- chmod u-w ${DESTDIR}${libdir}/libares.a
+ ${INSTALL} -m 644 $(LIB) ${DESTDIR}${libdir}
+ ${RANLIB} ${DESTDIR}${libdir}/$(LIB)
+ chmod u-w ${DESTDIR}${libdir}/$(LIB)
${INSTALL} -m 444 ${srcdir}/ares.h ${DESTDIR}${includedir}
${INSTALL} -m 444 ${srcdir}/ares_destroy.3 ${DESTDIR}${mandir}/man3
${INSTALL} -m 444 ${srcdir}/ares_expand_name.3 ${DESTDIR}${mandir}/man3
@@ -81,7 +82,7 @@ install:
${INSTALL} -m 444 ${srcdir}/ares_timeout.3 ${DESTDIR}${mandir}/man3
clean:
- rm -f ${OBJS} libares.a adig.o adig ahost.o ahost
+ rm -f ${OBJS} $(LIB) adig.o adig ahost.o ahost
distclean: clean
rm -f config.cache config.log config.status Makefile