diff options
author | Martin Lucina <mato@kotelna.sk> | 2010-03-11 20:33:27 +0100 |
---|---|---|
committer | Martin Lucina <mato@kotelna.sk> | 2010-03-11 20:33:27 +0100 |
commit | 27e2d08449ea52649e2e42b263f76fbd5d8382c5 (patch) | |
tree | 470feaca5d3b14366b1246f6cec8b336f2f71453 /perf | |
parent | 90944759b66771bbe399922eecedc5095fa2a509 (diff) |
Restructure language bindings
C and C++ headers moved from bindings/ to include/, bindings/ removed
--with-c and --with-cpp options to configure removed, C and C++ now built
and installed by default
Diffstat (limited to 'perf')
-rw-r--r-- | perf/Makefile.am | 10 | ||||
-rw-r--r-- | perf/c/Makefile.am | 2 | ||||
-rw-r--r-- | perf/cpp/Makefile.am | 2 |
3 files changed, 3 insertions, 11 deletions
diff --git a/perf/Makefile.am b/perf/Makefile.am index 87c4833..7e87d68 100644 --- a/perf/Makefile.am +++ b/perf/Makefile.am @@ -1,10 +1,2 @@ -if BUILD_C -PERF_DIR_C = c -endif - -if BUILD_CPP -PERF_DIR_CPP = cpp -endif - -SUBDIRS = $(PERF_DIR_C) $(PERF_DIR_CPP) +SUBDIRS = c cpp DIST_SUBDIRS = c cpp diff --git a/perf/c/Makefile.am b/perf/c/Makefile.am index c6d8d8a..d48dcee 100644 --- a/perf/c/Makefile.am +++ b/perf/c/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(top_builddir)/bindings/c +INCLUDES = -I$(top_builddir)/include if BUILD_PGM_EXAMPLES PGM_EXAMPLES_BINS = pgmsend pgmrecv diff --git a/perf/cpp/Makefile.am b/perf/cpp/Makefile.am index 65ffe68..37b970c 100644 --- a/perf/cpp/Makefile.am +++ b/perf/cpp/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(top_srcdir)/bindings/cpp -I$(top_srcdir)/bindings/c +INCLUDES = -I$(top_srcdir)/include noinst_PROGRAMS = local_lat remote_lat local_thr remote_thr |