diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-16 16:27:18 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-16 16:27:18 +0000 |
commit | dc659ec7368bd3f31b2b1426fa106f0380f1a6d8 (patch) | |
tree | 55f97b2359aa96b62153f72197986cda3d9a676c /ares | |
parent | 09aa1659427eff5f695ada0f1666d8f1ba1d3934 (diff) |
only build adig and ahost if 'make demos' is used
Diffstat (limited to 'ares')
-rw-r--r-- | ares/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ares/Makefile.in b/ares/Makefile.in index bb453cd47..9ba9ea6e7 100644 --- a/ares/Makefile.in +++ b/ares/Makefile.in @@ -27,7 +27,9 @@ 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: $(LIB) adig ahost +all: $(LIB) + +demos: adig ahost $(LIB): ${OBJS} ar cru $@ ${OBJS} |