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 41 42 43 44 45
|
# Miscellaneous targets.
#
# Oracle Linux DTrace.
# Copyright (c) 2011, 2024, Oracle and/or its affiliates. All rights reserved.
# Licensed under the Universal Permissive License v 1.0 as shown at
# http://oss.oracle.com/licenses/upl.
# The targets in this file used to be in the top-level GNUmakefile, but
# were moved here to make sure that the help is printed in the right order.
help::
@printf "Targets:\n\n" >&2
@printf "all Compile (default)\n" >&2
@printf "dlibs Build translator files\n" >&2
@printf "install Install (DESTDIR supported)\n" >&2
@printf "install-test Install testsuite (DESTDIR supported)\n" >&2
@printf "install-dtprobed-autostart Install udev / systemd rules to start dtprobed" >&2
@printf " (done by make install unless prefix or sbindir" >&2
@printf " are changed)" >&2
@printf "clean / realclean Clean up build tree\n" >&2
@printf "TAGS / tags / gtags Make tags files\n" >&2
@printf "\n" >&2
all:: $(TARGETS)
clean::
$(call describe-target,CLEAN,$(objdir) test/log)
-rm -rf $(objdir) test/log
realclean: clean
-rm -f TAGS tags GTAGS GRTAGS GPATH
TAGS:
$(call describe-target,TAGS)
rm -f TAGS; find . -name '*.[ch]' | xargs etags -a
tags:
$(call describe-target,tags)
rm -f tags; find . -name '*.[ch]' | xargs ctags -a
gtags:
$(call describe-target,gtags)
gtags -i
PHONIES += all install install-test clean realclean TAGS tags gtags help
|