summaryrefslogtreecommitdiff
path: root/buildlib/makefile.in
blob: 596f33d9de378ee4ad0c907efb7d790d20955aaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
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