1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# We need the ORB to compile and the tango header files to compile
AM_CPPFLAGS = -I$(top_srcdir)/lib/cpp/server \
-I$(top_srcdir)/lib/cpp/log4tango/include \
-I$(top_builddir)/lib/cpp/log4tango/include \
-I$(top_builddir)/lib/cpp/server \
-I$(top_srcdir)/lib/cpp/server/jpeg \
$(ORB_INCLUDE_PREFIX) $(LIBZMQ_CFLAGS)
# We're making a libtool convenience library which is not to be installed,
# therefore the automake noinst variable
noinst_LTLIBRARIES = libjpeg_mmx.la
libjpeg_mmx_la_CXXFLAGS=@JPEG_MMX_LIB_CXXFLAGS@ -O0
# These are the sources for the library.
libjpeg_mmx_la_SOURCES = jpeg_color_mmx.cpp \
jpeg_dct_mmx.cpp
|