Makefile.am 1.2 KB

123456789101112131415161718192021222324252627282930
  1. nativeexeclib_LTLIBRARIES = libgstreamerpeer.la
  2. libgstreamerpeer_la_SOURCES = gst_peer.c \
  3. gstreamer_io_peer.c \
  4. gst_native_data_line.c \
  5. gst_input_stream.c \
  6. gst_native_pipeline.c \
  7. gst_classpath_src.c \
  8. gst_peer.h \
  9. gst_classpath_src.h \
  10. gst_input_stream.h \
  11. gst_native_pipeline.h
  12. libgstreamerpeer_la_LIBADD = $(top_builddir)/native/jni/classpath/jcl.lo
  13. libgstreamerpeer_la_LDFLAGS = $(AM_LDFLAGS) @GST_PLUGIN_LDFLAGS@ -avoid-version
  14. AM_LDFLAGS = @CLASSPATH_MODULE@ @GSTREAMER_LIBS@ @GSTREAMER_BASE_LIBS@ \
  15. @GSTREAMER_PLUGINS_BASE_LIBS@ @GDK_LIBS@
  16. AM_CPPFLAGS = @CLASSPATH_INCLUDES@
  17. # We cannot use -Wwrite-strings and the strict flags since
  18. # gstreamer contain broken prototypes (by design).
  19. AM_CFLAGS = @WARNING_CFLAGS@ -Wno-write-strings \
  20. -Wno-missing-field-initializers \
  21. @ERROR_CFLAGS@ -Wno-unused-parameter @GSTREAMER_BASE_CFLAGS@ \
  22. @GDK_CFLAGS@ @GSTREAMER_CFLAGS@ @GSTREAMER_PLUGINS_BASE_CFLAGS@ \
  23. @EXTRA_CFLAGS@