~ubuntu-branches/ubuntu/karmic/monodevelop-java/karmic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
clean-local:
	make pre-clean-local-hook
	make $(CONFIG)_BeforeClean
	-rm -f $(CLEANFILES)
	make $(CONFIG)_AfterClean
	make post-clean-local-hook

install-local:
uninstall-local:

dist-local:
	make pre-dist-local-hook distdir=$$distdir
	list='$(EXTRA_DIST)'; \
	for f in Makefile $$list; do \
		d=`dirname "$$f"`; \
		test -d "$(distdir)/$$d" || \
			mkdir -p "$(distdir)/$$d"; \
		cp -p "$$f" "$(distdir)/$$d" || exit 1; \
	done
	make post-dist-local-hook distdir=$$distdir

dist-local-recursive:
	for dir in $(SUBDIRS); do \
		mkdir -p $(distdir)/$$dir || true; \
		case $$dir in \
		.) make dist-local distdir=$(distdir) || exit 1;; \
		*) (cd $$dir; make dist-local distdir=$(distdir)/$$dir) || exit 1; \
		esac \
	done

#hooks: Available hooks - all, clean, install, uninstall and dist
#	and their *-local variants
pre-%-hook: ; @:
post-%-hook: ; @:

#targets for custom commands
%_BeforeBuild: ; @:
%_AfterBuild: ; @:
%_BeforeClean: ; @:
%_AfterClean: ; @: