Kaynağa Gözat

Better configure support
Author: jgg
Date: 1998-07-14 05:09:40 GMT
Better configure support

Arch Librarian 22 yıl önce
ebeveyn
işleme
066427d0be
2 değiştirilmiş dosya ile 26 ekleme ve 4 silme
  1. 24 0
      buildlib/makefile.in
  2. 2 4
      configure.in

+ 24 - 0
buildlib/makefile.in

@@ -0,0 +1,24 @@
+# -*- make -*-
+
+# This is the build directory make file, it sets the build directory
+# and runs the src makefile.
+
+SRCDIR=@top_srcdir@
+SUBDIRS:=./doc ./bin ./obj ./include/apt-pkg ./include/deity
+BUILD:=$(shell pwd)
+export BUILD
+
+# Chain to the parent make to do the actual building
+.PHONY: headers library clean veryclean all binary program doc
+headers library clean veryclean all binary program doc:
+	$(MAKE) -C $(SRCDIR) $@
+	
+# This makes any missing directories
+.PHONY: dirs
+MISSING_DIRS:=	$(filter-out $(wildcard $(SUBDIRS)),$(SUBDIRS))
+dirs:
+ifneq ($(words $(MISSING_DIRS)),0)
+	@mkdir  $(MISSING_DIRS)
+else
+	@echo > /dev/null
+endif	

+ 2 - 4
configure.in

@@ -9,6 +9,7 @@ dnl need a C++ compiler that is semi-standard conformant, exceptions are
 dnl not used but STL is.
 dnl not used but STL is.
 
 
 AC_INIT(configure.in)
 AC_INIT(configure.in)
+AC_CONFIG_AUX_DIR(buildlib)
 AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in)
 AC_CONFIG_HEADER(include/config.h:buildlib/config.h.in)
 
 
 dnl Tom's host stuff
 dnl Tom's host stuff
@@ -84,7 +85,4 @@ dnl Check for debiandoc
 AC_CHECK_PROG(DEBIANDOC_HTML,debiandoc2html,"yes","")
 AC_CHECK_PROG(DEBIANDOC_HTML,debiandoc2html,"yes","")
 AC_CHECK_PROG(DEBIANDOC_TEXT,debiandoc2text,"yes","")
 AC_CHECK_PROG(DEBIANDOC_TEXT,debiandoc2text,"yes","")
 
 
-AC_OUTPUT(environment.mak:buildlib/environment.mak.in)
-
-dnl Setup the directories
-mkdir doc bin obj include/apt-pkg include/deity
+AC_OUTPUT(environment.mak:buildlib/environment.mak.in makefile:buildlib/makefile.in,make dirs)