diff options
author | Sage Weil <sage@redhat.com> | 2016-09-07 17:50:14 +0200 |
---|---|---|
committer | Sage Weil <sage@redhat.com> | 2016-09-07 17:50:14 +0200 |
commit | fba798dcad1a341cf72d02f65d840997cdb02caa (patch) | |
tree | 2c0e97461830de5e4b5d0b650c2d3ae767bdf411 /src/perfglue | |
parent | Merge pull request #10963 from liewegas/wip-bluestore-sharded-extent-map (diff) | |
download | ceph-fba798dcad1a341cf72d02f65d840997cdb02caa.tar.xz ceph-fba798dcad1a341cf72d02f65d840997cdb02caa.zip |
remove autotools
Signed-off-by: Sage Weil <sage@redhat.com>
Diffstat (limited to 'src/perfglue')
-rw-r--r-- | src/perfglue/Makefile.am | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/src/perfglue/Makefile.am b/src/perfglue/Makefile.am deleted file mode 100644 index 77c3085e6d0..00000000000 --- a/src/perfglue/Makefile.am +++ /dev/null @@ -1,35 +0,0 @@ -libperfglue_la_SOURCES = - -if WITH_TCMALLOC -libperfglue_la_SOURCES += perfglue/heap_profiler.cc -libperfglue_la_LIBADD = -ltcmalloc -AM_CFLAGS += -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free -AM_CXXFLAGS += -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free -else -if WITH_TCMALLOC_MINIMAL -libperfglue_la_SOURCES += perfglue/heap_profiler.cc -libperfglue_la_LIBADD = -ltcmalloc_minimal -AM_CFLAGS += -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free -AM_CXXFLAGS += -fno-builtin-malloc -fno-builtin-calloc -fno-builtin-realloc -fno-builtin-free -else -libperfglue_la_SOURCES += perfglue/disabled_heap_profiler.cc -endif # WITH_TCMALLOC_MINIMAL -endif # WITH_TCMALLOC - -if WITH_PROFILER -libperfglue_la_SOURCES += perfglue/cpu_profiler.cc -else -libperfglue_la_SOURCES += perfglue/disabled_stubs.cc -endif # WITH_PROFILER - -noinst_LTLIBRARIES += libperfglue.la - -# Do not use TCMALLOC with dencoder -DENCODER_SOURCES += \ - perfglue/disabled_heap_profiler.cc \ - perfglue/disabled_stubs.cc - -noinst_HEADERS += \ - perfglue/cpu_profiler.h \ - perfglue/heap_profiler.h - |