From: Guenter Knauf Date: Thu, 11 Apr 2013 12:08:51 +0000 (+0200) Subject: Create ares_build.h when buidling from Git. X-Git-Tag: upstream/1.10.0~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2004a7a1115e25128170e40470eba8603f7080da;p=platform%2Fupstream%2Fc-ares.git Create ares_build.h when buidling from Git. --- diff --git a/Makefile.m32 b/Makefile.m32 index 1856636..42149f5 100644 --- a/Makefile.m32 +++ b/Makefile.m32 @@ -15,6 +15,7 @@ CC = gcc LD = gcc RANLIB = ranlib #RM = rm -f +CP = cp -afv CFLAGS = -O2 -Wall -I. CFLAGS += -DCARES_STATICLIB @@ -46,6 +47,9 @@ $(OBJLIB): ares.h ares_dns.h ares_private.h ares_build.h ares_rules.h .c.o: $(CC) $(CFLAGS) -c $< +ares_build.h: + $(CP) ares_build.h.dist ares_build.h + check: install: @@ -67,4 +71,7 @@ clean: distclean: clean $(RM) config.cache config.log config.status Makefile +ifeq "$(wildcard ares_build.h.dist)" "ares_build.h.dist" + $(RM) ares_build.h +endif