diff options
author | Yang Tse <yangsita@gmail.com> | 2009-04-30 11:48:43 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-04-30 11:48:43 +0000 |
commit | 7951433e323586764e43d55f7c2a80a06fe906ad (patch) | |
tree | 167e6ad337e0b3f13e83ce1cdd87e8dff06bee47 /Makefile.m32 | |
parent | 128f52ec601e00370f5ab92f33771060d819de40 (diff) | |
download | c-ares-7951433e323586764e43d55f7c2a80a06fe906ad.tar.gz c-ares-7951433e323586764e43d55f7c2a80a06fe906ad.tar.bz2 c-ares-7951433e323586764e43d55f7c2a80a06fe906ad.zip |
cope with ares_build.h and ares_rules.h
Diffstat (limited to 'Makefile.m32')
-rw-r--r-- | Makefile.m32 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.m32 b/Makefile.m32 index 6cce1c8..120aad3 100644 --- a/Makefile.m32 +++ b/Makefile.m32 @@ -40,7 +40,7 @@ tags: %.exe: %.o ares_getopt.o $(LIB) $(LD) $(LDFLAGS) -o $@ $^ $(LIBS) -$(OBJLIB): ares.h ares_dns.h ares_private.h +$(OBJLIB): ares.h ares_dns.h ares_private.h ares_build.h ares_rules.h .c.o: $(CC) $(CFLAGS) -c $< @@ -55,7 +55,8 @@ install: ${RANLIB} ${DESTDIR}${libdir}/$(LIB) chmod u-w ${DESTDIR}${libdir}/$(LIB) ${INSTALL} -m 444 ${srcdir}/ares.h ${DESTDIR}${includedir} - ${INSTALL} -m 444 ${srcdir}/ares_version.h ${DESTDIR}${includedir} + ${INSTALL} -m 444 ${srcdir}/ares_build.h ${DESTDIR}${includedir} + ${INSTALL} -m 444 ${srcdir}/ares_rules.h ${DESTDIR}${includedir} (for man in $(MANPAGES); do \ ${INSTALL} -m 444 ${srcdir}/$${man} ${DESTDIR}${mandir}/man3; \ done) |