view liboctave/util/module.mk @ 18840:4a4edf0f2077 nkf-ready

fix LLVM 3.4 build (bug #41061) * configure.ac: Call new functions OCTAVE_LLVM_RAW_FD_OSTREAM_API and OCTAVE_LLVM_LEGACY_PASSMANAGER_API, check for Verifier.h header file * m4/acinclude.m4 (OCTAVE_LLVM_RAW_FD_OSTREAM_API): New function to detect correct raw_fd_ostream API * m4/acinclude.m4 (OCTAVE_LLVM_LEGACY_PASSMANAGER_API): New function to detect legacy passmanager API * libinterp/corefcn/jit-util.h: Use legacy passmanager namespace if necessary * libinterp/corefcn/pt-jit.h (class tree_jit): Use legacy passmanager class if necessary * libinterp/corefcn/pt-jit.cc: Include appropriate header files * libinterp/corefcn/pt-jit.cc (tree_jit::initialize): Use legacy passmanager if necessary * libinterp/corefcn/pt-jit.cc (tree_jit::optimize): Use correct API * libinterp/corefcn/jit-typeinfo.cc: Include appropriate header file
author Stefan Mahr <dac922@gmx.de>
date Sun, 11 May 2014 02:28:33 +0200
parents 89bd70fae066
children 3087dc835497 fe689210525c
line wrap: on
line source

EXTRA_DIST += \
  util/module.mk

UTIL_INC = \
  util/action-container.h \
  util/base-list.h \
  util/byte-swap.h \
  util/caseless-str.h \
  util/cmd-edit.h \
  util/cmd-hist.h \
  util/data-conv.h \
  util/functor.h \
  util/glob-match.h \
  util/lo-array-gripes.h \
  util/lo-cutils.h \
  util/lo-ieee.h \
  util/lo-macros.h \
  util/lo-math.h \
  util/lo-traits.h \
  util/lo-utils.h \
  util/oct-alloc.h \
  util/oct-base64.h \
  util/oct-binmap.h \
  util/oct-cmplx.h \
  util/oct-glob.h \
  util/oct-inttypes.h \
  util/oct-locbuf.h \
  util/oct-md5.h \
  util/oct-mem.h \
  util/oct-mutex.h \
  util/oct-refcount.h \
  util/oct-rl-edit.h \
  util/oct-rl-hist.h \
  util/oct-shlib.h \
  util/oct-sort.h \
  util/oct-sparse.h \
  util/pathsearch.h \
  util/lo-regexp.h \
  util/singleton-cleanup.h \
  util/sparse-sort.h \
  util/sparse-util.h \
  util/statdefs.h \
  util/str-vec.h \
  util/sun-utils.h \
  util/unwind-prot.h \
  util/url-transfer.h

UTIL_C_SRC = \
  util/f2c-main.c \
  util/lo-cutils.c \
  util/oct-rl-edit.c \
  util/oct-rl-hist.c 

UTIL_SRC = \
  util/cmd-edit.cc \
  util/cmd-hist.cc \
  util/data-conv.cc \
  util/glob-match.cc \
  util/lo-array-gripes.cc \
  util/lo-ieee.cc \
  util/lo-utils.cc \
  util/oct-alloc.cc \
  util/oct-base64.cc \
  util/oct-glob.cc \
  util/oct-inttypes.cc \
  util/oct-locbuf.cc \
  util/oct-md5.cc \
  util/oct-mutex.cc \
  util/oct-shlib.cc \
  util/pathsearch.cc \
  util/lo-regexp.cc \
  util/singleton-cleanup.cc \
  util/sparse-sort.cc \
  util/sparse-util.cc \
  util/str-vec.cc \
  util/unwind-prot.cc \
  util/url-transfer.cc \
  $(UTIL_C_SRC)

TEMPLATE_SRC += \
  util/oct-sort.cc

OTHER_INC += \
  util/kpse.cc

noinst_LTLIBRARIES += util/libutil.la

util_libutil_la_SOURCES = $(UTIL_SRC)
util_libutil_la_CPPFLAGS = \
  $(liboctave_la_CPPFLAGS) \
  $(PCRE_CPPFLAGS) \
  $(SPARSE_XCPPFLAGS)