summaryrefslogtreecommitdiff
path: root/Makefile.subdir
blob: 6470510d9826fd5ed2626e0178195d8e0327da3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# -*-makefile-*-
include $(topdir)/builds/current
builddir = $(topdir)/builds/$(CURRENT_BUILD)/$(srcdir)

.PHONY: _default_build_ all
_default_build_: all
all %:
	@if test -e $(builddir); then \
		echo cd $(builddir); \
		cd $(builddir); \
		echo $(MAKE) $@; \
		$(MAKE) $@; \
	else \
		echo; \
		echo 'Run configure first, or type "make" in a configured build directory.'; \
		echo; \
	fi
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback