blob: 185db54298009aa9386549e4c84469282fd8e046 (
plain)
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
46
47
48
49
50
51
52
53
54
55
|
# The name of this distributive (used for tarballs etc.).
# *MUST* be defined here...
#
NAME = traceroute
# All subdir lists below are space-separated, with make's '%' wildcard
# allowed. Default value is shown in commented out example.
#
# Subdirs to exclude anyway
#
#SKIPDIRS = tmp%
# Subdirs to be treated as libdirs.
#
#LIBDIRS = lib%
# An exact non-wildcard list of libdirs to be placed last in LIBDIRS list,
# with the order specified. Useful, when some library should be
# specified last because of referencing from another library...
#
#LIBLAST =
# Subdirs to be treated as includedirs.
# Also all LIBDIRS will be actually used for includes too.
#
#INCLUDEDIRS = include%
# Subdirs to be treated as moduledirs.
#
#MODDIRS = mod%
# Subdirs of executables which will use modules at run-time linking.
#
#MODUSERS =
# Subdirs of executables to be installed in `*/sbin' instead of `*/bin'.
#
#SBINUSERS =
# Subdirs to exclude from install
#
SKIPINSTALL = test% libsupp
# A better way to alter the variables is to use "+=" or
# "override VAR += value"
#
# CFLAGS +=
# CPPFLAGS +=
# LDFLAGS +=
# LIBS +=
CPPFLAGS += -D_GNU_SOURCE
|