mirror of
https://bitbucket.org/anguist/ntpa
synced 2025-10-05 02:20:57 +00:00
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
clean-local:
|
|
make pre-clean-local-hook
|
|
make $(CONFIG)_BeforeClean
|
|
-rm -f $(call quote_each,$(CLEANFILES))
|
|
make $(CONFIG)_AfterClean
|
|
make post-clean-local-hook
|
|
|
|
install-local:
|
|
uninstall-local:
|
|
|
|
q2quote = '$(subst ?, ,$1)'
|
|
quote_each = $(foreach f,$(call s2q,$1),$(call q2quote,$f))
|
|
|
|
dist-local:
|
|
make pre-dist-local-hook "distdir=$$distdir"
|
|
for f in Makefile $(call quote_each,$(EXTRA_DIST)); 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 $(call quote_each,$(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: ; @:
|