From: Boris Boesler Date: Thu, 8 Mar 2001 10:35:13 +0000 (+0000) Subject: create install directories before installing files in them X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=a4afbec326049d23ffe43df7d4a66436de4fe319;p=libfirm create install directories before installing files in them [r119] --- diff --git a/MakeTargets b/MakeTargets index 6b1cc7b6f..278aa7ad2 100644 --- a/MakeTargets +++ b/MakeTargets @@ -48,7 +48,7 @@ local_tags: $(TAGFILES) # installation install: subdir_install local_install -local_install: +local_install: $(INCLUDEDIR) $(LIBDIR) ifneq ($(strip $(INSTALL_HEADERS)),) $(INSTALL) -m u+rw,a+r $(addprefix $(srcdir)/,$(INSTALL_HEADERS)) $(INCLUDEDIR) endif @@ -56,5 +56,11 @@ ifneq ($(strip $(INSTALL_LIBS)),) $(INSTALL) -m u+rw,a+r $(addprefix $(topdir)/,$(INSTALL_LIBS)) $(LIBDIR) endif +$(LIBDIR): $(LIBDIR) + mkdir -p $@ + +$(INCLUDEDIR): $(INCLUDEDIR) + mkdir -p $@ + # include dependencies -include .depend diff --git a/config.h.in b/config.h.in index 7e66521b8..79c27b2f7 100644 --- a/config.h.in +++ b/config.h.in @@ -11,3 +11,9 @@ /* Define if you have the header file. */ #undef HAVE_GMP_H + +/* Define if you have the header file. */ +#undef HAVE_MATH_H + +/* Define if you have the header file. */ +#undef HAVE_OBSTACK_H