| 123456789101112131415161718192021222324252627282930 |
- # -*- make -*-
- # 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:=./docs ./bin ./bin/methods ./obj ./include/apt-pkg ./include/deity
- SUBDIRS+=./obj/apt-pkg ./obj/deity ./obj/gui ./obj/cmdline \
- ./obj/test ./obj/methods ./obj/methods/ftp
- BUILD:=$(shell pwd)
- export BUILD
- # Chain to the parent make to do the actual building
- .PHONY: headers library clean veryclean all binary program doc
- all headers library clean veryclean binary program doc:
- $(MAKE) -C $(SRCDIR) -f Makefile $@
-
- # 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
|