[18271] | 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 | |
---|
[20896] | 9 | noinst_PROGRAMS = first second\ |
---|
[18271] | 10 | mountlist procmap netload sysdeps timings \ |
---|
[20896] | 11 | @static_targets@ @smp_examples@ |
---|
[18271] | 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 |
---|
[20896] | 20 | first_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
[18271] | 21 | |
---|
| 22 | first_static_SOURCES = $(first_SOURCES) |
---|
| 23 | first_static_LDADD = $(first_LDADD) |
---|
| 24 | first_static_LDFLAGS = -static |
---|
| 25 | |
---|
| 26 | second_SOURCES = second.c |
---|
[20896] | 27 | second_LDADD = $(top_builddir)/lib/libgtop-2.0.la -lm |
---|
[18271] | 28 | |
---|
| 29 | second_static_SOURCES = $(second_SOURCES) |
---|
| 30 | second_static_LDADD = $(second_LDADD) |
---|
| 31 | second_static_LDFLAGS = -static |
---|
| 32 | |
---|
| 33 | procmap_SOURCES = procmap.c |
---|
[20896] | 34 | procmap_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
[18271] | 35 | |
---|
| 36 | procmap_static_SOURCES = $(procmap_SOURCES) |
---|
| 37 | procmap_static_LDADD = $(procmap_LDADD) |
---|
| 38 | procmap_static_LDFLAGS = -static |
---|
| 39 | |
---|
| 40 | netload_SOURCES = netload.c |
---|
[20896] | 41 | netload_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
[18271] | 42 | |
---|
| 43 | netload_static_SOURCES = $(netload_SOURCES) |
---|
| 44 | netload_static_LDADD = $(netload_LDADD) |
---|
| 45 | netload_static_LDFLAGS = -static |
---|
| 46 | |
---|
| 47 | sysdeps_SOURCES = sysdeps.c |
---|
[20896] | 48 | sysdeps_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
[18271] | 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 |
---|
[20896] | 57 | third_LDADD = $(third_names_LIBS) \ |
---|
[18271] | 58 | $(top_builddir)/lib/libgtop-2.0.la \ |
---|
[20896] | 59 | @INTLLIBS@ |
---|
[18271] | 60 | |
---|
| 61 | third_static_SOURCES = $(third_SOURCES) |
---|
| 62 | third_static_LDADD = $(third_LDADD) |
---|
| 63 | third_static_LDFLAGS = -static |
---|
| 64 | |
---|
| 65 | mountlist_SOURCES = mountlist.c |
---|
[20896] | 66 | mountlist_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
[18271] | 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 |
---|
[20896] | 74 | smp_LDADD = $(top_builddir)/lib/libgtop-2.0.la -lm |
---|
[18271] | 75 | |
---|
| 76 | smp_static_SOURCES = $(smp_SOURCES) |
---|
| 77 | smp_static_LDADD = $(smp_LDADD) |
---|
| 78 | smp_static_LDFLAGS = -static |
---|
| 79 | |
---|
| 80 | timings_SOURCES = timings.c |
---|
[20896] | 81 | timings_LDADD = $(top_builddir)/lib/libgtop-2.0.la |
---|
[18271] | 82 | |
---|
| 83 | timings_static_SOURCES = $(timings_SOURCES) |
---|
| 84 | timings_static_LDADD = $(timings_LDADD) |
---|
| 85 | timings_static_LDFLAGS = -static |
---|
| 86 | |
---|