-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMakefile.targets
32 lines (28 loc) · 1.16 KB
/
Makefile.targets
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
#
# $Id$
#
#
# Makefile targets that should be treated specially,
# e.g.: non obj/executable affecting targets => don't build dependencies for
# them or don't try any action that would be useful only for generating
# actual code
#
# History:
# --------
# 2008-06-26 initial version (andrei)
#
clean_targets:= clean proper distclean realclean maintainer-clean clean_libs \
clean-all proper-all distclean-all realclean-all \
clean_cfg clean_modules_cfg clean-modules-cfg
doc_targets:= modules-doc modules-readme README modules-man man \
install-doc install-modules-doc install-man install-ser-man \
install-modules-man
# auxiliary: maintance, debugging, etc. (don't affect code/objects)
aux_targets:= TAGS tar dist cfg-defs cfg config config.mak print-modules \
dbg dbinstall librpath.lst makecfg.lst modules.lst
# other targets that don't produce code in the current directory ("external")
ext_targets:= modules libs utils \
install-cfg install-modules install-utils install-modules-all \
install-share
# all the targets that don't require code dependecies in the current dir.
nodep_targets:= $(clean_targets) $(doc_targets) $(aux_targets) $(ext_targets)