From 2004a7a1115e25128170e40470eba8603f7080da Mon Sep 17 00:00:00 2001 From: Guenter Knauf Date: Thu, 11 Apr 2013 14:08:51 +0200 Subject: [PATCH] Create ares_build.h when buidling from Git. --- Makefile.m32 | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- 2.7.4