X-Git-Url: https://git.saurik.com/apt.git/blobdiff_plain/f0a53b6301cd1f5d0878f2d6ed21811d70a86f9a..a65cbe33db47c5657e4db7f35a5cd4b9614209bc:/buildlib/makefile.in diff --git a/buildlib/makefile.in b/buildlib/makefile.in index 2ea7e63d5..6e28f754d 100644 --- a/buildlib/makefile.in +++ b/buildlib/makefile.in @@ -2,19 +2,29 @@ # This is the build directory make file, it sets the build directory # and runs the src makefile. +ifndef NOISY .SILENT: +endif SRCDIR=@top_srcdir@ -SUBDIRS:=./doc ./bin ./bin/methods ./obj ./include/apt-pkg ./include/deity -SUBDIRS+=./obj/docs ./obj/apt-pkg ./obj/deity ./obj/gui ./obj/cmdline \ - ./obj/test ./obj/methods ./obj/methods/ftp +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