diff options
Diffstat (limited to 'src/boost')
-rw-r--r-- | src/boost/Makefile.am | 8 | ||||
-rw-r--r-- | src/boost/format/Makefile.am | 12 | ||||
-rw-r--r-- | src/boost/format/local.mk | 7 |
3 files changed, 7 insertions, 20 deletions
diff --git a/src/boost/Makefile.am b/src/boost/Makefile.am deleted file mode 100644 index 8b5aa25fb5bd..000000000000 --- a/src/boost/Makefile.am +++ /dev/null @@ -1,8 +0,0 @@ -SUBDIRS = format - -nobase_pkginclude_HEADERS = assert.hpp checked_delete.hpp format.hpp \ - shared_ptr.hpp weak_ptr.hpp throw_exception.hpp \ - enable_shared_from_this.hpp \ - detail/shared_count.hpp detail/workaround.hpp - -pkgincludedir = ${includedir}/nix/boost diff --git a/src/boost/format/Makefile.am b/src/boost/format/Makefile.am deleted file mode 100644 index 13e23d315da8..000000000000 --- a/src/boost/format/Makefile.am +++ /dev/null @@ -1,12 +0,0 @@ -pkglib_LTLIBRARIES = libformat.la - -libformat_la_SOURCES = format_implementation.cc free_funcs.cc \ - parsing.cc - -pkginclude_HEADERS = exceptions.hpp feed_args.hpp format_class.hpp \ - format_fwd.hpp group.hpp internals.hpp internals_fwd.hpp \ - macros_default.hpp - -pkgincludedir = ${includedir}/nix/boost/format - -AM_CXXFLAGS = -Wall -I$(srcdir)/../.. diff --git a/src/boost/format/local.mk b/src/boost/format/local.mk new file mode 100644 index 000000000000..3776eff382fe --- /dev/null +++ b/src/boost/format/local.mk @@ -0,0 +1,7 @@ +libraries += libformat + +libformat_NAME = libnixformat + +libformat_DIR := $(d) + +libformat_SOURCES := $(wildcard $(d)/*.cc) |