]> git.saurik.com Git - apt.git/blobdiff - buildlib/makefile.in
More usr doc fixes
[apt.git] / buildlib / makefile.in
index f53b8cca9a53f46ae7a9ae01417733c66bcacb16..dbcc91cd696d0c8f71e71f141b78fdcfe21988e7 100644 (file)
@@ -2,18 +2,30 @@
 
 # This is the build directory make file, it sets the build directory
 # and runs the src makefile.
+ifndef NOISY
 .SILENT:
+endif
+include environment.mak
 
 SRCDIR=@top_srcdir@
-SUBDIRS:=./doc ./bin ./obj ./include/apt-pkg ./include/deity
-SUBDIRS+=./obj/doc ./obj/apt-pkg ./obj/deity ./obj/gui ./obj/cmdline
+DIRS:=./docs ./bin ./obj ./include ./scripts
+SUBDIRS:= $(DIRS) ./docs/examples ./bin/methods ./include/apt-pkg \
+         ./include/deity ./obj/apt-pkg ./obj/deity ./obj/gui ./obj/cmdline \
+         ./obj/test ./obj/methods ./obj/methods/ftp ./scripts/dselect
 BUILD:=$(shell pwd)
 export BUILD
 
 # Chain to the parent make to do the actual building
-.PHONY: headers library clean veryclean all binary program doc
+.PHONY: headers library clean veryclean all binary program doc \
+        veryclean/local
 all headers library clean veryclean binary program doc:
        $(MAKE) -C $(SRCDIR) -f Makefile $@
+
+# Purge everything.
+.PHONY: maintainer-clean dist-clean pristine sanity distclean
+maintainer-clean dist-clean pristine sanity distclean:
+       -rm -rf $(DIRS)
+       -rm -f config.cache config.log config.status environment.mak makefile
        
 # This makes any missing directories
 .PHONY: dirs
@@ -24,3 +36,8 @@ ifneq ($(words $(MISSING_DIRS)),0)
 else
        @echo > /dev/null
 endif  
+ifeq ($(HAVE_C9X),yes)
+       -@rm include/inttypes.h > /dev/null 2>&1
+else
+       @cp $(SRCDIR)/buildlib/inttypes.h.in include/inttypes.h
+endif