summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6407d43cf5c5a4547519b0bd6837869b6fe8764c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.PHONY: _default_build_
_default_build_: all
%:
	@if test -e builds; then \
		echo cd builds; \
		cd builds; \
		echo $(MAKE) $@; \
		$(MAKE) $@; \
	else \
		echo; \
		echo 'Run configure first, or type "make" in a configured build directory.'; \
		echo; \
	fi

distclean:
	@if test -e builds; then \
		echo cd builds; \
		cd builds; \
		echo $(MAKE) $@; \
		$(MAKE) $@; \
	fi
	rm -rf builds
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback