1 | ## Process this file with automake to produce Makefile.in |
---|
2 | |
---|
3 | LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@ |
---|
4 | |
---|
5 | INCLUDES = @INCLUDES@ |
---|
6 | |
---|
7 | DEFS = @DEFS@ |
---|
8 | |
---|
9 | noinst_PROGRAMS = first second\ |
---|
10 | mountlist procmap netload sysdeps timings \ |
---|
11 | @static_targets@ @smp_examples@ |
---|
12 | |
---|
13 | EXTRA_PROGRAMS = first_static second_static \ |
---|
14 | mountlist_static procmap_static \ |
---|
15 | third third_static smp smp_static \ |
---|
16 | netload_static sysdeps_static \ |
---|
17 | timings_static |
---|
18 | |
---|
19 | first_SOURCES = first.c |
---|
20 | first_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
21 | |
---|
22 | first_static_SOURCES = $(first_SOURCES) |
---|
23 | first_static_LDADD = $(first_LDADD) |
---|
24 | first_static_LDFLAGS = -static |
---|
25 | |
---|
26 | second_SOURCES = second.c |
---|
27 | second_LDADD = $(top_builddir)/lib/libgtop-2.0.la -lm |
---|
28 | |
---|
29 | second_static_SOURCES = $(second_SOURCES) |
---|
30 | second_static_LDADD = $(second_LDADD) |
---|
31 | second_static_LDFLAGS = -static |
---|
32 | |
---|
33 | procmap_SOURCES = procmap.c |
---|
34 | procmap_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
35 | |
---|
36 | procmap_static_SOURCES = $(procmap_SOURCES) |
---|
37 | procmap_static_LDADD = $(procmap_LDADD) |
---|
38 | procmap_static_LDFLAGS = -static |
---|
39 | |
---|
40 | netload_SOURCES = netload.c |
---|
41 | netload_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
42 | |
---|
43 | netload_static_SOURCES = $(netload_SOURCES) |
---|
44 | netload_static_LDADD = $(netload_LDADD) |
---|
45 | netload_static_LDFLAGS = -static |
---|
46 | |
---|
47 | sysdeps_SOURCES = sysdeps.c |
---|
48 | sysdeps_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
49 | |
---|
50 | sysdeps_static_SOURCES = $(sysdeps_SOURCES) |
---|
51 | sysdeps_static_LDADD = $(sysdeps_LDADD) |
---|
52 | sysdeps_static_LDFLAGS = -static |
---|
53 | |
---|
54 | third_names_LIBS = $(top_builddir)/sysdeps/names/libgtop_names-2.0.la |
---|
55 | |
---|
56 | third_SOURCES = third.c |
---|
57 | third_LDADD = $(third_names_LIBS) \ |
---|
58 | $(top_builddir)/lib/libgtop-2.0.la \ |
---|
59 | @INTLLIBS@ |
---|
60 | |
---|
61 | third_static_SOURCES = $(third_SOURCES) |
---|
62 | third_static_LDADD = $(third_LDADD) |
---|
63 | third_static_LDFLAGS = -static |
---|
64 | |
---|
65 | mountlist_SOURCES = mountlist.c |
---|
66 | mountlist_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
67 | |
---|
68 | mountlist_static_SOURCES= $(mountlist_SOURCES) |
---|
69 | mountlist_static_LDADD = $(mountlist_LDADD) |
---|
70 | mountlist_static_LDFLAGS= -static |
---|
71 | |
---|
72 | |
---|
73 | smp_SOURCES = smp.c |
---|
74 | smp_LDADD = $(top_builddir)/lib/libgtop-2.0.la -lm |
---|
75 | |
---|
76 | smp_static_SOURCES = $(smp_SOURCES) |
---|
77 | smp_static_LDADD = $(smp_LDADD) |
---|
78 | smp_static_LDFLAGS = -static |
---|
79 | |
---|
80 | timings_SOURCES = timings.c |
---|
81 | timings_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
82 | |
---|
83 | timings_static_SOURCES = $(timings_SOURCES) |
---|
84 | timings_static_LDADD = $(timings_LDADD) |
---|
85 | timings_static_LDFLAGS = -static |
---|
86 | |
---|