create install directories before installing files in them
authorBoris Boesler <boesler@ipd.info.uni-karlsruhe.de>
Thu, 8 Mar 2001 10:35:13 +0000 (10:35 +0000)
committerBoris Boesler <boesler@ipd.info.uni-karlsruhe.de>
Thu, 8 Mar 2001 10:35:13 +0000 (10:35 +0000)
[r119]

MakeTargets
config.h.in

index 6b1cc7b..278aa7a 100644 (file)
@@ -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
index 7e66521..79c27b2 100644 (file)
@@ -11,3 +11,9 @@
 
 /* Define if you have the <gmp.h> header file.  */
 #undef HAVE_GMP_H
+
+/* Define if you have the <math.h> header file.  */
+#undef HAVE_MATH_H
+
+/* Define if you have the <obstack.h> header file.  */
+#undef HAVE_OBSTACK_H